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 f9a258e commit 1b38a2aCopy full SHA for 1b38a2a
.github/workflows/publish-to-pypi.yaml
@@ -30,8 +30,9 @@ jobs:
30
id: version_check
31
run: |
32
# Fetch the latest tags
33
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/kevinrawal/type-fastapi.git
34
git fetch --tags
- PREV_VERSION=$(git describe --tags --abbrev=0 main || echo "0.0.0")
35
+ PREV_VERSION=$(git describe --tags --abbrev=0 || echo "0.0.0")
36
echo "Previous Version: $PREV_VERSION"
37
38
# Get the current version from pyproject.toml
0 commit comments