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.
pupi-publish
1 parent c1bf7c0 commit 375c72dCopy full SHA for 375c72d
.github/workflows/pypi-release.yml
@@ -9,17 +9,18 @@ jobs:
9
build-and-publish:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
13
- name: Set up Python
14
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v3
15
with:
16
- python-version: "3.x"
+ python-version: "3.10"
17
+ cache: 'pip'
18
- name: Install build dependencies
19
run: pip install -U setuptools wheel build
20
- name: Build
21
run: python -m build .
22
- name: Publish
- uses: pypa/gh-action-pypi-publish@master
23
+ uses: pypa/gh-action-pypi-publish@release/v1
24
25
password: ${{ secrets.pypi_password }}
26
- name: Install GitPython and cloudevents for pypi_packaging
0 commit comments