Skip to content

Commit

Permalink
merge: Merge pull request #29 from genshen/fix-gh-deprecated-artifact…
Browse files Browse the repository at this point in the history
…-actions

ci(gh-action): bump action upload-artifact, download-artifact to v4 and action-gh-release to v2.
  • Loading branch information
genshen committed Oct 21, 2024
2 parents d20ec93 + a792594 commit 733129c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
cd ../
mv client-ui/client-ui-windows-amd64.exe client-ui-windows-amd64.exe
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: build-artifact-${{ matrix.os }}
path: ${{ matrix.artifact_files }}
Expand All @@ -70,19 +70,19 @@ jobs:
needs: build
runs-on: ubuntu-22.04
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build-artifact-ubuntu-22.04
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build-artifact-windows-2022
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build-artifact-macos-12
- run: ls -R

- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down

0 comments on commit 733129c

Please sign in to comment.