summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-release.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml
index 2f5b5cf2f..3e1ff30a5 100644
--- a/.github/workflows/build-release.yml
+++ b/.github/workflows/build-release.yml
@@ -36,8 +36,7 @@ jobs:
database-type: ${{ matrix.database }}
- name: build and create archive
- working-directory: ${{ github.workspace }}/server/apps/${{ env.APP_NAME }}
- run: make && make appstore
+ run: cd ../server/apps/${{ env.APP_NAME }} && make && make appstore
env:
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
app_public_cert: ${{ secrets.APP_PUBLIC_CERT }}
@@ -47,7 +46,7 @@ jobs:
id: attach_to_release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
- file: ${{ github.workspace }}/server/apps/${{ env.APP_NAME }}/build/artifacts/appstore/${{ env.APP_NAME }}.tar.gz
+ file: ../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