Skip to content

Commit d4b03d7

Browse files
committed
Fixed some CI issues
1 parent c529452 commit d4b03d7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/bumpversion.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- uses: actions/checkout@v3
3030
with:
3131
fetch-depth: 0
32+
token: ${{ secrets.PAT }}
3233

3334
- uses: actions/setup-python@v4
3435
with:

.github/workflows/ci.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,17 @@ jobs:
6464
with:
6565
token: ${{ secrets.PAT }}
6666

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+
shell: bash
75+
run: |
76+
bumpversion dev bumpversion/__init__.py --no-commit --no-configured-files -v
77+
6778
- name: Package
6879
shell: bash
6980
run: |

0 commit comments

Comments
 (0)