You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+15-14Lines changed: 15 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -52,13 +52,13 @@ on:
52
52
type: choice
53
53
# Keep this up-to-date with the modules in the repository.
54
54
options:
55
-
- '.'
56
-
- 'keystore'
57
-
- 'observability-lib'
58
-
- 'pkg/values'
59
-
- 'pkg/workflows/sdk/v2/pb'
60
-
- 'pkg/chipingress'
61
-
- 'pkg/monitoring'
55
+
- "."
56
+
- "keystore"
57
+
- "observability-lib"
58
+
- "pkg/values"
59
+
- "pkg/workflows/sdk/v2/pb"
60
+
- "pkg/chipingress"
61
+
- "pkg/monitoring"
62
62
63
63
tag-prefix-override:
64
64
# Tags for go modules have some formatting requirements.
@@ -84,7 +84,7 @@ on:
84
84
head-ref-override:
85
85
# This overrides/forces the tag to point to something other than the HEAD of the branch the workflow is running on.
86
86
# This is only needed if the commit to be released is not the HEAD of the branch.
87
-
description: 'HEAD REF (override) - the ref/sha the new release/tag will reference. Defaults to the HEAD of the current branch.'
87
+
description: "HEAD REF (override) - the ref/sha the new release/tag will reference. Defaults to the HEAD of the current branch."
88
88
required: false
89
89
# default: ${{ github.ref_name }} - not possible here
90
90
type: string
@@ -93,12 +93,12 @@ on:
93
93
# Normally, the workflow determines the latest version/release by comparing the git tags matching the desired format (see tag-prefix-override).
94
94
# This overrides the latest release/version to be a specific ref. The computed API diff will be between this ref and the head ref (or release-ref-override if specified).
95
95
# If this is set then version-override is required, as overriding the base ref breaks the normal version recommendation heuristic.
96
-
description: 'BASE REF (override) - The most recent release/version/ref to compare against. Defaults to the latest (semver) tag with the associated tag prefix. version-override is required if this is set.'
96
+
description: "BASE REF (override) - The most recent release/version/ref to compare against. Defaults to the latest (semver) tag with the associated tag prefix. version-override is required if this is set."
97
97
required: false
98
98
type: string
99
99
100
100
dry-run:
101
-
description: 'DRY RUN - Run everything, except for release creation.'
101
+
description: "DRY RUN - Run everything, except for release creation."
102
102
required: true
103
103
type: boolean
104
104
default: false
@@ -202,7 +202,7 @@ jobs:
202
202
203
203
release:
204
204
name: Version and Draft Release ${{ inputs.dry-run && '(dry-run)' || '' }}
205
-
needs: [process-inputs, approval-gate]
205
+
needs: [process-inputs, approval-gate]
206
206
runs-on: ubuntu-latest
207
207
permissions:
208
208
contents: write
@@ -344,14 +344,15 @@ jobs:
344
344
345
345
gh release create "${release_args[@]}"
346
346
347
-
348
347
# Used to enforce approvals before kicking off the rest of the jobs.
0 commit comments