Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci.yml #3

Merged
merged 1 commit into from
Sep 7, 2024
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
run: docker run --rm -v $(pwd)/distfiles:/tmp ffmpeg_input cp -R /opt/dist /tmp

- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.name }}
path: distfiles/dist
Expand All @@ -77,10 +77,10 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux]
steps:
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: wheels-manylinux-arm
- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: wheels-manylinux-x86
- name: Publish to PyPI
Expand All @@ -91,11 +91,11 @@ jobs:
command: upload
args: --skip-existing *
- name: Download native artifacts ARM
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: wheels-native-arm
- name: Download native artifacts x86
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: wheels-native-x86
- name: Attach Artifacts to the release
Expand Down
Loading