Skip to content

Commit

Permalink
Merge pull request #298 from freifunkMUC/backport-292-to-legacy
Browse files Browse the repository at this point in the history
[Backport legacy] github: only create release if a tag was pushed
  • Loading branch information
grische committed Nov 9, 2023
2 parents 814d48e + f63e783 commit 305fe7a
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 @@ -64,7 +64,7 @@ jobs:
create_release:
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 305fe7a

Please sign in to comment.