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.
2 parents 156f55c + 292628c commit b762cb4Copy full SHA for b762cb4
.github/workflows/release.yml
@@ -34,17 +34,8 @@ jobs:
34
# Determine the new version from the release tag (e.g., "v1.2.3")
35
NEW_VERSION=$(echo "${{ github.ref }}" | sed 's/^refs\/tags\///')
36
37
- # Configure Git identity
38
- git config --global user.email "[email protected]"
39
- git config --global user.name "Deepgram"
40
-
41
- # Create and switch to a new branch
42
- git checkout -b update-version
43
44
# Update the setup.py file with the new version
45
sed -i "s/VERSION = .*/VERSION = \"$NEW_VERSION\"/" setup.py
46
- git commit -m "Update VERSION to $NEW_VERSION" setup.py
47
- git push origin update-version
48
49
- name: Build package
50
run: python -m build
0 commit comments