mirror of
https://github.com/g3rv4/GetMoarFediverse.git
synced 2024-11-21 23:23:09 +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
|
tar -czf artifact/GetMoarFediverse_${{ matrix.runtime }}.tgz $zipDirectory
|
||||||
}
|
}
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ matrix.runtime }}
|
name: ${{ matrix.runtime }}
|
||||||
path: artifact/*
|
path: artifact/*
|
||||||
@ -48,19 +48,19 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [ create-artifact ]
|
needs: [ create-artifact ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@master
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: win-x64
|
name: win-x64
|
||||||
path: artifacts/win-x64
|
path: artifacts/win-x64
|
||||||
- uses: actions/download-artifact@master
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: linux-x64
|
name: linux-x64
|
||||||
path: artifacts/linux-x64
|
path: artifacts/linux-x64
|
||||||
- uses: actions/download-artifact@master
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: linux-arm64
|
name: linux-arm64
|
||||||
path: artifacts/linux-arm64
|
path: artifacts/linux-arm64
|
||||||
- uses: actions/download-artifact@master
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: osx-x64
|
name: osx-x64
|
||||||
path: artifacts/osx-x64
|
path: artifacts/osx-x64
|
||||||
|
Loading…
Reference in New Issue
Block a user