We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7a4242 commit 6fe0782Copy full SHA for 6fe0782
.github/workflows/build-wheel-release-publish.yml
@@ -3,7 +3,7 @@ on:
3
workflow_dispatch:
4
push:
5
tags:
6
- - '*'
+ - '*'
7
permissions:
8
contents: write
9
jobs:
@@ -33,7 +33,7 @@ jobs:
33
with:
34
commit_message: update changelog
35
branch: pypi-build # FIXME: change to main
36
-
+
37
github-pre-release:
38
needs: [build-package]
39
if: contains(github.ref, 'rc')
@@ -81,4 +81,4 @@ jobs:
81
uses: pypa/gh-action-pypi-publish@release/v1
82
83
repository-url: https://test.pypi.org/legacy/ # FIXME: remove test.
84
- verbose: true
+ verbose: true
.github/workflows/update-changelog.py
@@ -1,6 +1,6 @@
1
import os
2
-from glob import glob
import sys
+from glob import glob
# Get the GitHub reference passed as an argument
tag = sys.argv[1]
0 commit comments