Skip to content

Commit 584af66

Browse files
authored
cicd: make build-push workflow push changes on manual dispatch (#435)
1 parent 7304ae0 commit 584af66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build')) || github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
2525
uses: ./.github/workflows/lib-build-and-push.yml
2626
with:
27-
upload: ${{ github.event_name == 'push' && endsWith(github.event.ref, 'scylla') }}
27+
upload: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && endsWith(github.event.ref, 'scylla') }}
2828
python-version: '3.13'

0 commit comments

Comments
 (0)