Skip to content

Commit de719f7

Browse files
valkirilovDimoHG
authored andcommitted
fix(ci): revert target to "all" to avoid wrong build path in pipeline-build-macos
Setting target to "macos" caused the macOS pipeline to enter the custom (manual) build path which expects build_macos_x64/arm64 format strings. The grep would fail with exit code 1. Keeping target as "all" ensures the correct prod/staging build steps run, while the commented-out jobs in build.yml still prevent Linux/Windows/Docker builds. Made-with: Cursor
1 parent 5d24106 commit de719f7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
secrets: inherit
2222
with:
2323
environment: "production"
24-
target: "macos"
24+
target: "all"
2525

2626
virustotal-prod:
2727
name: Virustotal

.github/workflows/release-stage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
secrets: inherit
2222
with:
2323
environment: "staging"
24-
target: "macos"
24+
target: "all"
2525

2626
aws:
2727
uses: ./.github/workflows/aws-upload-dev.yml

0 commit comments

Comments
 (0)