From f44633463a9622affdc861c1e14961722acd9e73 Mon Sep 17 00:00:00 2001 From: Hiddify Date: Sun, 10 Mar 2024 00:01:48 +0100 Subject: [PATCH] fix: conflict in upload artificat --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1356cd3..8879a6d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -100,10 +100,10 @@ jobs: tar -czvf ${{ matrix.job.name }}.tar.gz $files working-directory: bin - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: ${{ success() }} with: - name: artifact + name: ${{ matrix.job.name }} path: bin/ upload-prerelease: @@ -112,9 +112,8 @@ jobs: needs: [build] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: artifact path: bin/ - name: Display Files Structure