Fix download-artifact (#47)

This commit is contained in:
Gervasio Marchand 2023-12-15 09:12:53 -03:00 committed by GitHub
parent 586cede38d
commit 3577a6072b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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