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 9731b04 commit afbb14dCopy full SHA for afbb14d
.github/workflows/release.yml
@@ -33,7 +33,7 @@ jobs:
33
python -m pip install build
34
python -m build
35
36
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
37
with:
38
path: ./dist/*
39
retention-days: 5
@@ -45,14 +45,14 @@ jobs:
45
# release on every tag
46
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
47
steps:
48
- - uses: actions/download-artifact@v3
+ - uses: actions/download-artifact@v4
49
50
name: artifact
51
path: dist
52
53
- name: Upload Github release
54
id: upload-release-asset
55
- uses: softprops/action-gh-release@v1
+ uses: softprops/action-gh-release@v2
56
57
- name: Upload Release Assets to PyPI
58
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments