We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23e845f commit 42d3865Copy full SHA for 42d3865
1 file changed
.github/workflows/test.yml
@@ -15,7 +15,6 @@ on:
15
16
jobs:
17
test:
18
- if: false # Temporarily disabled to iterate on publish flow
19
runs-on: ubuntu-latest
20
strategy:
21
fail-fast: false
@@ -48,6 +47,7 @@ jobs:
48
47
continue-on-error: true
49
50
publish:
+ needs: test
51
# Only publish on tags (ffmpeg-*) or manual dispatch
52
# and only if it's not a pull request
53
if: |
@@ -86,3 +86,9 @@ jobs:
86
CENTRAL_PASSWORD: ${{ secrets.CENTRAL_PASSWORD }}
87
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
88
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
89
+
90
+ - name: Create GitHub Release
91
+ if: startsWith(github.ref, 'refs/tags/ffmpeg-')
92
+ uses: softprops/action-gh-release@v2
93
+ with:
94
+ generate_release_notes: true
0 commit comments