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.
1 parent 4d4d54a commit c42e1cdCopy full SHA for c42e1cd
1 file changed
.github/workflows/python-publish.yml
@@ -23,7 +23,7 @@ jobs:
23
python -m pip install --upgrade pip!=22.1.*
24
pip install flit
25
- name: Build and publish yaqd-core
26
- if: startsWith( github.action_ref, 'yaqd-core-')
+ if: startsWith( github.ref_name, 'yaqd-core-')
27
env:
28
FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD_YAQD_CORE }}
29
run: |
@@ -32,7 +32,7 @@ jobs:
32
flit publish
33
34
- name: Build and publish yaqc
35
- if: startsWith( github.action_ref, 'yaqc-')
+ if: startsWith( github.ref_name, 'yaqc-')
36
37
FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD_YAQC }}
38
@@ -41,7 +41,7 @@ jobs:
41
42
43
44
- if: startsWith( github.action_ref, 'yaqd-fakes-')
+ if: startsWith( github.ref_name, 'yaqd-fakes-')
45
46
FLIT_PASSWORD: ${{ secrets.PYPI_PASSWORD_YAQD_FAKES }}
47
0 commit comments