0
0
mirror of https://github.com/yeongpin/cursor-free-vip.git synced 2025-04-24 08:25:23 +00:00

Refactor GitHub Actions workflow to adjust job dependencies for build processes, ensuring that version determination occurs before tag creation for Linux and macOS builds.

This commit is contained in:
yeongpin 2025-04-22 11:15:15 +08:00
parent 1489357328
commit 4aba849cf1

View File

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