[ci] Fix release creation auth

This commit is contained in:
Nemo 2022-05-04 19:38:01 +00:00 committed by GitHub
parent ce0664b80f
commit 1d8af368f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

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