Skip to content

Commit

Permalink
fix: github action release step condition
Browse files Browse the repository at this point in the history
  • Loading branch information
alessio-form3 committed Oct 24, 2023
1 parent 907174e commit 81a9a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ calculate-tag, build, commit-message ]
permissions: write-all
if: contains(needs.commit-message.outputs.head-commit-message, 'pre-release') || startsWith(github.ref, '/refs/tags')
if: contains(needs.commit-message.outputs.head-commit-message, 'pre-release') || startsWith(github.ref, 'refs/tags')
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 81a9a14

Please sign in to comment.