We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c529452 commit d4b03d7Copy full SHA for d4b03d7
.github/workflows/bumpversion.yaml
@@ -29,6 +29,7 @@ jobs:
29
- uses: actions/checkout@v3
30
with:
31
fetch-depth: 0
32
+ token: ${{ secrets.PAT }}
33
34
- uses: actions/setup-python@v4
35
.github/workflows/ci.yaml
@@ -64,6 +64,17 @@ jobs:
64
65
token: ${{ secrets.PAT }}
66
67
+ - name: Install requirements
68
+ shell: bash
69
+ run: |
70
+ python -m pip install --disable-pip-version-check --no-python-version-warning build
71
+ python -m pip install --disable-pip-version-check --no-python-version-warning -e .
72
+
73
+ - name: Set dev version
74
75
76
+ bumpversion dev bumpversion/__init__.py --no-commit --no-configured-files -v
77
78
- name: Package
79
shell: bash
80
run: |
0 commit comments