From e6aa6e3a55d1bb91269118e8169ade3b5fa665a2 Mon Sep 17 00:00:00 2001 From: Hung-I Wang Date: Wed, 27 Nov 2024 23:31:27 +0800 Subject: [PATCH] chore: downgrade the artifact action to fix releasing --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52c8229..8e13b84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: strip -v "$f" || echo "strip failed" working-directory: ./cli - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: binaries path: cli/bin/ @@ -81,7 +81,7 @@ jobs: if: "startsWith(github.ref, 'refs/tags/')" needs: [compile] steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: binaries - name: Release