File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 32
32
with :
33
33
# If you're using actions/checkout@v4 you must set persist-credentials to false in most cases for the deployment to work correctly.
34
34
persist-credentials : false
35
- - uses : actions/download-artifact@v3
35
+ - uses : actions/download-artifact@v4
36
36
with :
37
37
name : docs-html-${{ github.sha }}
38
38
path : docs/build/
Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ jobs:
27
27
# We do this, since failures on test.pypi aren't that bad
28
28
- name : Publish to Test PyPI
29
29
if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
30
- uses : pypa/gh-action-pypi-publish@v1.8.12
30
+ uses : pypa/gh-action-pypi-publish@v1.8.14
31
31
with :
32
32
user : __token__
33
33
password : ${{ secrets.test_pypi_password }}
34
34
repository_url : https://test.pypi.org/legacy/
35
35
36
36
- name : Publish distribution 📦 to PyPI
37
37
if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
38
- uses : pypa/gh-action-pypi-publish@v1.8.12
38
+ uses : pypa/gh-action-pypi-publish@v1.8.14
39
39
with :
40
40
user : __token__
41
41
password : ${{ secrets.pypi_password }}
You can’t perform that action at this time.
0 commit comments