Skip to content

Commit

Permalink
fix: release workflow uses latest version of artifact uploader
Browse files Browse the repository at this point in the history
  • Loading branch information
janlegner committed May 15, 2024
1 parent ed0bcb5 commit 71474e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
command: build
args: --release
- name: Archive mtx-server
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mtx-server
path: |
target/release/mtx-server
- name: Archive mtx-client
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mtx-client
path: |
Expand All @@ -50,13 +50,13 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
- name: Get mtx-server artifact
id: mtx_server_artifact
uses: actions/download-artifact@master
uses: actions/download-artifact@v4
with:
name: mtx-server
path: .
- name: Get mtx-client artifact
id: mtx_client_artifact
uses: actions/download-artifact@master
uses: actions/download-artifact@v4
with:
name: mtx-client
path: .
Expand Down

0 comments on commit 71474e6

Please sign in to comment.