From b15f69c804d447cfb65d416164ecc87e84c8e59c Mon Sep 17 00:00:00 2001 From: Aidan Timson Date: Fri, 19 Feb 2021 15:47:01 +0000 Subject: [PATCH] Add release artifacts --- .github/workflows/deploy.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f18b188ab..efa52ca2e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -137,3 +137,17 @@ jobs: BUILD_REF=${{ github.sha }} BUILD_REPOSITORY=${{ github.repository }} BUILD_VERSION=${{ needs.information.outputs.version }} + - name: ⬆ Backend - Upload Artifacts to Release + uses: fnkr/github-action-ghr@v1 + if: startsWith(github.ref, 'refs/tags/') + env: + GHR_COMPRESS: gz + GHR_PATH: backend/lib + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: ⬆ Frontend - Upload Artifacts to Release + uses: fnkr/github-action-ghr@v1 + if: startsWith(github.ref, 'refs/tags/') + env: + GHR_COMPRESS: gz + GHR_PATH: frontend/build + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}