We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dff2c43 commit 7ff00c1Copy full SHA for 7ff00c1
.github/workflows/build.yaml
@@ -183,6 +183,7 @@ jobs:
183
uses: softprops/action-gh-release@v2
184
with:
185
generate_release_notes: true
186
+ draft: ${{ contains(github.ref, '-') }}
187
files: |
188
checksum.txt
189
${{ steps.asset.outputs.asset-x86_64-apple-darwin }}
@@ -194,6 +195,7 @@ jobs:
194
195
name: Publish
196
runs-on: ubuntu-latest
197
needs: [release]
198
+ if: ${{ !contains(github.ref, '-') }}
199
200
steps:
201
- name: Checkout
0 commit comments