File tree 1 file changed +2
-3
lines changed 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -50,14 +50,13 @@ 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 }}
54
53
PCAPKIT_CONDA_LABEL : ${{ steps.get_version.outputs.PCAPKIT_CONDA_LABEL }}
55
54
56
55
pypi_github :
57
56
name : PyPI & GitHub Release # with Python ${{ matrix.python-version }}
58
57
runs-on : ubuntu-latest
59
58
needs : [ version_check ]
60
- if : ${{ startsWith(needs.version_check.outputs.PCAPKIT_GITHUB_REF , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
59
+ if : ${{ startsWith(github.ref_name , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
61
60
# strategy:
62
61
# matrix:
63
62
# python-version:
@@ -159,7 +158,7 @@ jobs:
159
158
name : Conda deployment of package with Python ${{ matrix.python-version }}
160
159
runs-on : ubuntu-latest
161
160
needs : [ version_check ]
162
- if : ${{ startsWith(needs.version_check.outputs.PCAPKIT_GITHUB_REF , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
161
+ if : ${{ startsWith(github.ref_name , 'v') || needs.version_check.outputs.PCAPKIT_TAG_EXISTS == 'false' }}
163
162
strategy :
164
163
matrix :
165
164
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