From b807b74f665bdd9ed7b0ad589d7eb381fd2f9450 Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Fri, 5 Feb 2021 17:16:05 +0100 Subject: use 'github.workspace' in release action Signed-off-by: Benjamin Brahmer --- .github/workflows/build-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index c87f0f5e5..2f5b5cf2f 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -36,7 +36,7 @@ jobs: database-type: ${{ matrix.database }} - name: build and create archive - working-directory: ../server/apps/${{ env.APP_NAME }} + working-directory: ${{ github.workspace }}/server/apps/${{ env.APP_NAME }} run: make && make appstore env: app_private_key: ${{ secrets.APP_PRIVATE_KEY }} @@ -47,7 +47,7 @@ jobs: id: attach_to_release with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ../server/apps/${{ env.APP_NAME }}/build/artifacts/appstore/${{ env.APP_NAME }}.tar.gz + file: ${{ github.workspace }}/server/apps/${{ env.APP_NAME }}/build/artifacts/appstore/${{ env.APP_NAME }}.tar.gz asset_name: ${{ env.APP_NAME }}.tar.gz tag: ${{ github.ref }} overwrite: true -- cgit v1.2.3