We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f95f7d commit 0881261Copy full SHA for 0881261
.github/workflows/python-publish.yml
@@ -13,20 +13,23 @@ jobs:
13
runs-on: ubuntu-latest
14
15
steps:
16
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
17
- name: Set up Python
18
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v5
19
with:
20
- python-version: '3.10'
+ python-version: '3.x'
21
- name: Install dependencies
22
run: |
23
python -m pip install --upgrade pip
24
pip install build
25
- name: directory structure
26
- run: tree
+ shell: bash -l {0}
27
+ run: |
28
+ tree
29
30
- name: Build package
31
run: python -m build
32
+
33
- name: Publish package
34
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
35
0 commit comments