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 4011273 commit 3176277Copy full SHA for 3176277
.github/workflows/python-package.yml
@@ -216,6 +216,14 @@ jobs:
216
env:
217
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
218
219
+ - name: Ensure tag exists
220
+ run: |
221
+ cd repo
222
+ git tag -f continuous-release_main
223
+ git push -f origin continuous-release_main
224
+ env:
225
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
226
+
227
- name: Generate pip install commands for release body
228
run: |
229
cat > body.md << 'ENDOFMARKDOWN'
@@ -266,7 +274,6 @@ jobs:
266
274
tag_name: continuous-release_main
267
275
make_latest: false
268
276
draft: false
269
- target_commitish: ${{ github.sha }}
270
277
271
278
audit-wheels:
272
279
needs: build-wheels
0 commit comments