Skip to content

Commit

Permalink
account for v4 merge requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
dfgordon committed Jul 27, 2024
1 parent 7616dba commit 9e3e5ef
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cargo cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -95,5 +95,14 @@ jobs:
- name: Archive artifact
uses: actions/upload-artifact@v4
with:
name: result
name: result-${{ matrix.TARGET }}
path: ./artifacts
merge:
runs-on: ubuntu-latest
needs: build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: result
pattern: result-*

0 comments on commit 9e3e5ef

Please sign in to comment.