Skip to content

Commit

Permalink
Merge pull request #292 from grische/fix/workflow-dispatch
Browse files Browse the repository at this point in the history
github: only create release if a tag was pushed
  • Loading branch information
grische authored Nov 8, 2023
2 parents 82877a4 + c7766b4 commit 01109a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- build_firmware
if: github.event_name != 'pull_request'
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 01109a1

Please sign in to comment.