Skip to content

Commit

Permalink
Update release.yml github workflow (#127)
Browse files Browse the repository at this point in the history
actions/upload-artifact@v2 was deprecated June 2024.

This PR updates this component to V4
  • Loading branch information
bgrahamen authored Nov 11, 2024
1 parent b1a3531 commit 9e93911
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
args: --release

- name: Upload Build
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: linux-x86_64-unknown-linux-gnu
path: ./target/release/thegarii
Expand All @@ -95,7 +95,7 @@ jobs:

- name: Download All Artifacts
id: download-artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: ./binaries

Expand All @@ -110,7 +110,7 @@ jobs:
# └── linux-x86_64-unknown-linux-gnu
# └── <binary>
#
# The sub-folder name comes from the 'name' field of the 'actions/upload-artifact@v2'
# The sub-folder name comes from the 'name' field of the 'actions/upload-artifact@v4'
# step. The '<binary>' file name is the filename of the uploaded 'path' field,
# we used './target/release/<binary>' in the upload step so the file name here
# is '<binary>'.
Expand Down

0 comments on commit 9e93911

Please sign in to comment.