From 1d8af368f6328d58604bfeb754c8c87a10d7c98a Mon Sep 17 00:00:00 2001 From: Nemo Date: Wed, 4 May 2022 19:38:01 +0000 Subject: [PATCH] [ci] Fix release creation auth --- .github/workflows/update.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 6bc3be6..8254aed 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -24,4 +24,6 @@ jobs: status_options: '--untracked-files=no' tagging_message: "v${{ steps.update_data.outputs.version }}" - name: Create Release - run: git diff --ignore-all-space -U0 HEAD^ *.csv|egrep -oe '^([+-]IN\w{10})' | gh release create "v${{ steps.update_data.outputs.version }}" --notes-file - \ No newline at end of file + run: git diff --ignore-all-space -U0 HEAD^ *.csv|egrep -oe '^([+-]IN\w{10})' | gh release create "v${{ steps.update_data.outputs.version }}" --notes-file - + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}