Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2...v3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and shssoichiro committed Nov 14, 2022
1 parent 302ff38 commit 6569c0a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: cargo build --release --features=unstable,channel-api --bin=rav1e-ch

- name: Upload rav1e-ch msvc binary (unstable)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: target/release/rav1e-ch.exe

Expand Down Expand Up @@ -111,20 +111,20 @@ jobs:
- name: Upload rav1e msvc binary
if: matrix.conf == 'msvc'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
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@v2
uses: actions/upload-artifact@v3
with:
path: rav1e-windows-${{ matrix.conf }}.zip

- name: Upload release binaries
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: rav1e-${{ steps.tagName.outputs.version }}-windows-${{ matrix.conf }}.zip

Expand Down Expand Up @@ -219,13 +219,13 @@ jobs:
- name: Upload pre-release binaries
if: >
startsWith(github.ref, 'refs/tags/p') || github.event_name == 'schedule'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: rav1e-${{ matrix.name }}.tar.gz

- name: Upload release binaries
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: rav1e-${{ steps.tagName.outputs.version }}-${{ matrix.name }}.tar.gz

Expand Down Expand Up @@ -276,13 +276,13 @@ jobs:
- name: Upload pre-release binaries
if: >
startsWith(github.ref, 'refs/tags/p') || github.event_name == 'schedule'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: rav1e-macos.zip

- name: Upload release binaries
if: startsWith(github.ref, 'refs/tags/v')
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: rav1e-${{ steps.tagName.outputs.version }}-macos.zip

Expand Down

0 comments on commit 6569c0a

Please sign in to comment.