Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,20 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
merge-multiple: true
pattern: plugin-wheel-*
path: dist
- name: List artifacts 📃
run: ls -al dist/
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
name: Upload build artifacts 📦
with:
name: plugin-wheels
retention-days: 7
path: dist
- name: Delete individual artifacts 🚮
uses: geekyeggo/delete-artifact@v5
uses: geekyeggo/delete-artifact@v6
with:
name: plugin-wheel-*
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
run: tar cf /tmp/env.tar .venv node_modules

- name: Upload environment
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: environment
retention-days: 1
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Download environment
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: environment
path: /tmp
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Download environment
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: environment
path: /tmp
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Download build artifacts 📦
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
merge-multiple: true
pattern: plugin-wheel-*
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
contents: write
steps:
- name: Download build artifacts 📦
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
merge-multiple: true
pattern: plugin-wheel-*
Expand Down Expand Up @@ -147,21 +147,21 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
merge-multiple: true
pattern: plugin-wheel-*
path: dist
# Try uploading to Test PyPI first, in case something fails.
- name: Publish to Test PyPI 🧪
uses: pypa/gh-action-pypi-publish@v1.13.0
uses: pypa/gh-action-pypi-publish@v1.14.0
with:
repository-url: https://test.pypi.org/legacy/
packages-dir: dist/
skip-existing: true
attestations: false
- name: Publish to PyPI 🚀
uses: pypa/gh-action-pypi-publish@v1.13.0
uses: pypa/gh-action-pypi-publish@v1.14.0
with:
packages-dir: dist/
skip-existing: true
Expand Down