1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-04-25 20:15:47 +02:00

use 'github.workspace' in release action

Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
This commit is contained in:
Benjamin Brahmer 2021-02-05 17:16:05 +01:00
parent 270f7f60db
commit b807b74f66

View File

@ -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