mirror of
https://github.com/g3rv4/GetMoarFediverse.git
synced 2024-11-21 15:13:08 +01:00
Fix download-artifact (#47)
This commit is contained in:
parent
586cede38d
commit
3577a6072b
10
.github/workflows/create-release.yml
vendored
10
.github/workflows/create-release.yml
vendored
@ -39,7 +39,7 @@ jobs:
|
||||
tar -czf artifact/GetMoarFediverse_${{ matrix.runtime }}.tgz $zipDirectory
|
||||
}
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ matrix.runtime }}
|
||||
path: artifact/*
|
||||
@ -48,19 +48,19 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ create-artifact ]
|
||||
steps:
|
||||
- uses: actions/download-artifact@master
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: win-x64
|
||||
path: artifacts/win-x64
|
||||
- uses: actions/download-artifact@master
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: linux-x64
|
||||
path: artifacts/linux-x64
|
||||
- uses: actions/download-artifact@master
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: linux-arm64
|
||||
path: artifacts/linux-arm64
|
||||
- uses: actions/download-artifact@master
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: osx-x64
|
||||
path: artifacts/osx-x64
|
||||
|
Loading…
Reference in New Issue
Block a user