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.
workflow_dispatch
1 parent 9be01b4 commit 4fd65e3Copy full SHA for 4fd65e3
.github/workflows/ci.yml
@@ -49,7 +49,10 @@ jobs:
49
run: npx semantic-release
50
ghcr:
51
runs-on: ubuntu-24.04
52
- if: github.repository_owner == 'Virtool' && github.event_name == 'push' && needs.release.outputs.git-tag != ''
+ if: |
53
+ github.repository_owner == 'Virtool' &&
54
+ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') &&
55
+ needs.release.outputs.git-tag != ''
56
needs: [release]
57
steps:
58
- name: Checkout
0 commit comments