You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cicd: move out publishing stage from reusable workflow
There is bug in publishing github action: pypa/gh-action-pypi-publish#166
that does not allow to publish from reusable workflows.
So we have to move it out.
# TODO: Remove when https://github.com/pypa/gh-action-pypi-publish/issues/166 is fixed and update build-and-publish.with.upload to ${{ endsWith(github.event.ref, 'scylla') }}
Copy file name to clipboardExpand all lines: .github/workflows/publish-manually.yml
+13-1
Original file line number
Diff line number
Diff line change
@@ -35,10 +35,22 @@ on:
35
35
36
36
jobs:
37
37
build-and-publish:
38
+
name: "Build wheels"
38
39
uses: ./.github/workflows/lib-build-and-push.yml
39
40
with:
40
-
upload: ${{ inputs.upload }}
41
+
upload: false
41
42
python-version: ${{ inputs.python-version }}
42
43
ignore_tests: ${{ inputs.ignore_tests }}
43
44
target_tag: ${{ inputs.target_tag }}
44
45
target: ${{ inputs.target }}
46
+
47
+
# TODO: Remove when https://github.com/pypa/gh-action-pypi-publish/issues/166 is fixed and update build-and-publish.with.upload to ${{ inputs.upload }}
0 commit comments