Skip to content

Commit

Permalink
feat: update artifact v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
killcerr authored Nov 23, 2024
1 parent 03021c7 commit b1a2a64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
- run: |
xmake -w -y
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }}
path: |
bin/DLL/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: PDB
path: |
Expand All @@ -44,13 +44,13 @@ jobs:
uses: actions/checkout@v4

- name: Download Plugin
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ github.event.repository.name }}-windows-x64-${{ github.sha }}
path: release/Plugin/

- name: Download PDB
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: PDB
path: release/PDB/
Expand Down

0 comments on commit b1a2a64

Please sign in to comment.