Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: cargo build --release --features=unstable,channel-api --bin=rav1e-ch

- name: Upload rav1e-ch msvc binary (unstable)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rav1e-ch (unstable) (AVX2)
path: target/release/rav1e-ch.exe
Expand Down Expand Up @@ -147,22 +147,22 @@ jobs:

- name: Upload rav1e msvc binary
if: matrix.conf == 'msvc'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rav1e (Windows-${{ matrix.name }})
path: target/${{ matrix.profile }}/rav1e.exe

- name: Upload pre-release binaries
if: >
startsWith(github.ref, 'refs/tags/p') || github.event_name == 'schedule'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: librav1e (Windows-${{ matrix.name }})
path: rav1e-windows-${{ matrix.name }}.zip

- name: Upload release binaries
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rav1e ${{ steps.tagName.outputs.version }} (Windows-${{ matrix.name }})
path: rav1e-${{ steps.tagName.outputs.version }}-windows-${{ matrix.name }}.zip
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_FILE }}
Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
startsWith(github.ref, 'refs/tags/p') ||
startsWith(github.ref, 'refs/tags/v') ||
github.event_name == 'schedule'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ env.ARTIFACT_NAME }}
path: ${{ env.ARTIFACT_FILE }}
Expand All @@ -452,7 +452,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down
Loading