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:
parent
1489357328
commit
4aba849cf1
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -141,7 +141,7 @@ jobs:
|
|||||||
path: dist/CursorFreeVIP_${{ env.VERSION }}_mac_arm64
|
path: dist/CursorFreeVIP_${{ env.VERSION }}_mac_arm64
|
||||||
|
|
||||||
build-linux-x64:
|
build-linux-x64:
|
||||||
needs: [create-tag , determine-version]
|
needs: [determine-version, create-tag]
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -178,7 +178,7 @@ jobs:
|
|||||||
path: dist/CursorFreeVIP_${{ env.VERSION }}_linux_x64
|
path: dist/CursorFreeVIP_${{ env.VERSION }}_linux_x64
|
||||||
|
|
||||||
build-linux-arm64:
|
build-linux-arm64:
|
||||||
needs: [create-tag , determine-version]
|
needs: [determine-version, create-tag]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -213,7 +213,7 @@ jobs:
|
|||||||
path: dist/CursorFreeVIP_${{ env.VERSION }}_linux_arm64
|
path: dist/CursorFreeVIP_${{ env.VERSION }}_linux_arm64
|
||||||
|
|
||||||
build-macos-intel:
|
build-macos-intel:
|
||||||
needs: [create-tag , determine-version]
|
needs: [determine-version, create-tag]
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user