Skip to content

Commit 117fd66

Browse files
committed
Re-enable all builds - Darwin CGO builds tested successfully
1 parent c5d8304 commit 117fd66

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "version=$version" >> "$GITHUB_OUTPUT"
6363
build:
6464
name: Build binary
65-
if: false
65+
if: github.event_name != 'workflow_dispatch' || inputs.build == 'All' || inputs.build == 'Binary'
6666
runs-on: ubuntu-latest
6767
needs:
6868
- calculate_version
@@ -354,7 +354,7 @@ jobs:
354354
path: "dist"
355355
build_android:
356356
name: Build Android
357-
if: false
357+
if: github.event_name != 'workflow_dispatch' || inputs.build == 'All' || inputs.build == 'Android'
358358
runs-on: ubuntu-latest
359359
needs:
360360
- calculate_version
@@ -434,7 +434,7 @@ jobs:
434434
path: 'dist'
435435
publish_android:
436436
name: Publish Android
437-
if: false
437+
if: github.event_name == 'workflow_dispatch' && inputs.build == 'publish-android'
438438
runs-on: ubuntu-latest
439439
needs:
440440
- calculate_version
@@ -681,7 +681,7 @@ jobs:
681681
path: 'dist'
682682
upload:
683683
name: Upload builds
684-
if: false
684+
if: "!failure() && github.event_name == 'workflow_dispatch' && (inputs.build == 'All' || inputs.build == 'Binary' || inputs.build == 'Android' || inputs.build == 'Apple' || inputs.build == 'macOS-standalone')"
685685
runs-on: ubuntu-latest
686686
needs:
687687
- calculate_version

0 commit comments

Comments
 (0)