From e134b396bc88ac2ac23577b33b2112d6713f0b2a Mon Sep 17 00:00:00 2001 From: Patrick Skowronek Date: Tue, 25 Jan 2022 11:01:00 +0100 Subject: [PATCH] Added a github action for publishing the binaries after building --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd444db2..5a3b0dd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,3 +112,12 @@ jobs: uses: github/codeql-action/upload-sarif@codeql-bundle-20211208 with: sarif_file: trivy-results.sarif + + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: target/connector.war + asset_name: ${{matrix.project_context}}_connector.war + tag: ${{ github.ref }} + overwrite: true \ No newline at end of file