Skip to content

Commit

Permalink
ci: avoid building releases without new version
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Dec 2, 2024
1 parent 9df33f6 commit c5c214d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ jobs:
win-native-release:
name: 🪟 Windows native binary release build
needs: [semantic-release]
if: ${{ needs.semantic-release.outputs.new_release_published == 'true' }}
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v4
Expand All @@ -194,6 +195,7 @@ jobs:
osx-native-release:
name: 🍎 OSX native binary release build
needs: [semantic-release]
if: ${{ needs.semantic-release.outputs.new_release_published == 'true' }}
runs-on: "macos-latest"
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit c5c214d

Please sign in to comment.