Skip to content

Commit

Permalink
Merge pull request #945 from SiaFoundation/chris/release-dash
Browse files Browse the repository at this point in the history
Don't trigger respository dispatch for releases with a dash
  • Loading branch information
ChrisSchinnerl authored Feb 9, 2024
2 parents b051523 + dc5c0a0 commit 5683d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ jobs:
name: renterd
path: release/
dispatch:
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, 'rc')
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-')
needs: [docker, build-linux, build-mac, build-windows]
strategy:
matrix:
Expand Down

0 comments on commit 5683d83

Please sign in to comment.