Skip to content

Commit 041e7e0

Browse files
committed
DEV: Forgot checkout for Github action
1 parent ec4c742 commit 041e7e0

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.github/workflows/create-github-release.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
name: Create a GitHub release page
1515
runs-on: ubuntu-latest
1616
steps:
17+
- name: Checkout Repository
18+
uses: actions/checkout@v4
1719
- name: Prepare variables
1820
id: prepare_variables
1921
run: |

.github/workflows/publish-to-pypi.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
python -m pip install --upgrade pip
2525
pip install flit
2626
27+
- name: Checkout Repository
28+
uses: actions/checkout@v4
29+
2730
- name: Publish Package to PyPI🚀
2831
env:
2932
FLIT_USERNAME: '__token__'

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# and it's decided what should be in the release.
44
# This action only ensures the release is done with the proper contents
55
# and that it's announced with a Github release.
6-
name: Publish Python Package to PyPI
6+
name: Create git tag
77
on:
88
push:
99
branches:

0 commit comments

Comments
 (0)