From 4aba849cf1363f7b1da800d475fb8f403b1272ad Mon Sep 17 00:00:00 2001 From: yeongpin Date: Tue, 22 Apr 2025 11:15:15 +0800 Subject: [PATCH] Refactor GitHub Actions workflow to adjust job dependencies for build processes, ensuring that version determination occurs before tag creation for Linux and macOS builds. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93fe2a4..2702550 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -141,7 +141,7 @@ jobs: path: dist/CursorFreeVIP_${{ env.VERSION }}_mac_arm64 build-linux-x64: - needs: [create-tag , determine-version] + needs: [determine-version, create-tag] runs-on: ubuntu-22.04 steps: @@ -178,7 +178,7 @@ jobs: path: dist/CursorFreeVIP_${{ env.VERSION }}_linux_x64 build-linux-arm64: - needs: [create-tag , determine-version] + needs: [determine-version, create-tag] runs-on: ubuntu-latest steps: @@ -213,7 +213,7 @@ jobs: path: dist/CursorFreeVIP_${{ env.VERSION }}_linux_arm64 build-macos-intel: - needs: [create-tag , determine-version] + needs: [determine-version, create-tag] runs-on: macos-latest steps: