Skip to content

Commit

Permalink
GitHub release script: add missing auth
Browse files Browse the repository at this point in the history
  • Loading branch information
rvl committed Apr 30, 2021
1 parent 0631b7e commit 8b57b53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
release:
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/heads/release/v') }}
runs-on: ubuntu-20.04
steps:
- name: '❄ Wait for Hydra build'
Expand All @@ -31,6 +31,8 @@ jobs:
files: |
*.tar.gz
*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

docs:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 8b57b53

Please sign in to comment.