We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8293890 commit e8bb335Copy full SHA for e8bb335
.github/workflows/release.yaml
@@ -11,6 +11,10 @@ on:
11
- stable
12
release_notes:
13
description: Release notes for the publishing the release. This is required to create a release.
14
+ build_dylib:
15
+ type: boolean
16
+ required: true
17
+ default: false
18
dry_run:
19
description: Perform a dry-run release (devel). Note that ref must be an annotated tag when run without dry-run.
20
type: boolean
@@ -34,7 +38,8 @@ env:
34
38
jobs:
35
39
# build-dylib is a separate job to build the dylib on macOS.
36
40
build-dylib:
37
- runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest' }}
41
+ if: inputs.build_dylib
42
+ runs-on: ${{ github.repository_owner == 'coder' && 'depot-macos-latest' || 'macos-latest' }}
43
steps:
44
# Harden Runner doesn't work on macOS.
45
- name: Checkout
0 commit comments