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 b6eab36 commit 71ef309Copy full SHA for 71ef309
.github/workflows/main.yml
@@ -33,7 +33,7 @@ jobs:
33
with:
34
python-version: ${{ matrix.python-version }}
35
- name: Append build hash if not a tagged commit
36
- if: github.ref != 'refs/tags/*'
+ if: startsWith(github.ref, 'refs/tags/v') != true
37
run: echo '::set-env name=BUILD_COMMIT_HASH::${{github.sha}}'
38
- name: Install dependencies
39
run: |
@@ -110,7 +110,7 @@ jobs:
110
- name: Create folder structure
111
run: mkdir -p wheelhouse/audited/
112
113
114
115
- name: Building a source distribution
116
0 commit comments