Skip to content

Commit 9e9b5f1

Browse files
committed
1
1 parent b469af8 commit 9e9b5f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-push.yml

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

.github/workflows/lib-build-and-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ jobs:
9595
if: inputs.ignore_tests
9696
shell: bash
9797
run: |
98-
echo "CIBW_TEST_COMMAND=''" >> $GITHUB_ENV;
99-
echo "CIBW_TEST_SKIP='*'" >> $GITHUB_ENV;
100-
echo "CIBW_BEFORE_TEST=''" >> $GITHUB_ENV;
98+
echo "CIBW_TEST_COMMAND=\"\"" >> $GITHUB_ENV;
99+
echo "CIBW_TEST_SKIP=*" >> $GITHUB_ENV;
100+
echo "CIBW_BEFORE_TEST=\"\"" >> $GITHUB_ENV;
101101
102102
- uses: actions/setup-python@v5
103103
name: Install Python

0 commit comments

Comments
 (0)