Skip to content

Commit 0881261

Browse files
authored
Update python-publish.yml
1 parent 6f95f7d commit 0881261

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/python-publish.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,23 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python
18-
uses: actions/setup-python@v3
18+
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.10'
20+
python-version: '3.x'
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
2424
pip install build
2525
- name: directory structure
26-
run: tree
26+
shell: bash -l {0}
27+
run: |
28+
tree
2729
2830
- name: Build package
2931
run: python -m build
32+
3033
- name: Publish package
3134
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
3235
with:

0 commit comments

Comments
 (0)