File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,14 @@ jobs:
50
50
PCAPKIT_VERSION : ${{ steps.get_version.outputs.PCAPKIT_VERSION }}
51
51
PCAPKIT_PRERELEASE : ${{ steps.get_version.outputs.PCAPKIT_PRERELEASE }}
52
52
PCAPKIT_TAG_EXISTS : ${{ steps.check_tag.outputs.exists }}
53
+ PCAPKIT_GITHUB_REF : ${{ github.ref }}
53
54
PCAPKIT_CONDA_LABEL : ${{ steps.get_version.outputs.PCAPKIT_CONDA_LABEL }}
54
55
55
56
pypi_github :
56
57
name : PyPI & GitHub Release # with Python ${{ matrix.python-version }}
57
58
runs-on : ubuntu-latest
58
59
needs : [ version_check ]
59
- if : ${{ startsWith(github.ref , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
60
+ if : ${{ startsWith(needs.version_check.outputs.PCAPKIT_GITHUB_REF , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
60
61
# strategy:
61
62
# matrix:
62
63
# python-version:
@@ -158,7 +159,7 @@ jobs:
158
159
name : Conda deployment of package with Python ${{ matrix.python-version }}
159
160
runs-on : ubuntu-latest
160
161
needs : [ version_check ]
161
- if : ${{ startsWith(github.ref , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
162
+ if : ${{ startsWith(needs.version_check.outputs.PCAPKIT_GITHUB_REF , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
162
163
strategy :
163
164
matrix :
164
165
python-version : [ "3.8", "3.9", "3.10", "3.11" ] # ignore 3.6/7 for now
You can’t perform that action at this time.
0 commit comments