From 565dfc4e6b54f4aa64a26e755432b94236b0255d Mon Sep 17 00:00:00 2001 From: Richard Willis Date: Sat, 8 Aug 2020 22:28:50 +0100 Subject: [PATCH] Fix get-release --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 358ed07..ab4503e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,13 +59,15 @@ jobs: tag=${GITHUB_REF#refs/tags/} tar_archive="mailinabox-ui.$tag.tar.gz" zip_archive="mailinabox-ui.$tag.zip" - tar -czvf "$tar_archive" dist/ + tar -czf "$tar_archive" dist/ zip -r9 "$zip_archive" dist/ echo "::set-output name=tar_archive::$tar_archive" echo "::set-output name=zip_archive::$zip_archive" - name: Get release id: get_release uses: bruceadams/get-release@v1.2.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload release tar archive uses: actions/upload-release-asset@v1 env: