From 6c497430766067baf2b426ed6aec15ceb77dce67 Mon Sep 17 00:00:00 2001 From: recharge-sp Date: Sat, 28 Sep 2024 17:14:52 +0800 Subject: [PATCH] Build: Attempt to fix store release GitHub actions --- .github/workflows/release_internal.yml | 8 ++++---- .github/workflows/release_public.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release_internal.yml b/.github/workflows/release_internal.yml index dffa18a2..cc36c393 100644 --- a/.github/workflows/release_internal.yml +++ b/.github/workflows/release_internal.yml @@ -48,7 +48,7 @@ jobs: targetPlatform: ${{ matrix.targetPlatform }} buildName: ArcCreate - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: Build-${{ matrix.targetPlatform }} path: build/${{ matrix.targetPlatform }} @@ -112,7 +112,7 @@ jobs: uses: actions/checkout@v3 - name: Download Android Artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-Android path: build/Android @@ -171,7 +171,7 @@ jobs: targetPlatform: iOS buildName: ArcCreate - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: build-iOS path: build/iOS @@ -185,7 +185,7 @@ jobs: uses: actions/checkout@v2 - name: Download iOS Artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-iOS path: build/iOS diff --git a/.github/workflows/release_public.yml b/.github/workflows/release_public.yml index 0c83a0ff..a95461f5 100644 --- a/.github/workflows/release_public.yml +++ b/.github/workflows/release_public.yml @@ -58,7 +58,7 @@ jobs: androidKeyaliasPass: ${{ secrets.ANDROID_KEYALIAS_PASS }} androidTargetSdkVersion: AndroidApiLevel34 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: build-${{ matrix.targetPlatform }} path: build/${{ matrix.targetPlatform }} @@ -92,7 +92,7 @@ jobs: uses: actions/checkout@v3 - name: Download Android Artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-Android path: build/Android @@ -120,7 +120,7 @@ jobs: uses: actions/checkout@v2 - name: Download iOS Artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: build-iOS path: build/iOS