We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7b2fca commit fc44743Copy full SHA for fc44743
.github/workflows/release.yml
@@ -131,7 +131,7 @@ jobs:
131
create-release:
132
needs: [build-windows, build-linux, build-macos]
133
runs-on: ubuntu-latest
134
- if: startsWith(github.ref, 'refs/tags/')
+ if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
135
steps:
136
- name: Download all artifacts
137
uses: actions/download-artifact@v4
0 commit comments