Skip to content

Commit e609b74

Browse files
committed
fix: Fix package version (#106)
Attempt to fix the package version bug by fetching the entire repo in the package build workflow. This should get the tag so it can be used when setting the version. Closes #106.
1 parent cf2623f commit e609b74

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pr_check.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ jobs:
3636
runs-on: ubuntu-latest
3737

3838
steps:
39-
- uses: actions/checkout@v3
39+
- name: Checkout code
40+
uses: actions/checkout@v3
41+
with:
42+
fetch-depth: 0 # Fetch the entire history including tags
4043

4144
- name: Set up Python
4245
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)