-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fix version bump in pyproject.toml
- Loading branch information
1 parent
2669ecf
commit 15193af
Showing
3 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,10 +77,17 @@ jobs: | |
- name: Force correct branch on workflow sha | ||
run: git checkout -B ${{ github.ref_name }} ${{ github.sha }} | ||
|
||
- name: Build the library | ||
env: | ||
TERM: xterm-256color | ||
run: ./build.sh | ||
- name: Install Poetry | ||
run: pipx install poetry | ||
|
||
- name: Install Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.12.6 | ||
cache: poetry | ||
|
||
- name: Install Dependencies | ||
run: poetry install --no-root --with dev --sync | ||
|
||
- name: Semantic Version Tagging | ||
uses: python-semantic-release/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters