-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (26 loc) 路 846 Bytes
/
Copy pathrelease.yaml
File metadata and controls
30 lines (26 loc) 路 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: 馃攧 Update Nitro CLI Version
on:
workflow_dispatch:
inputs:
version:
description: Version to update to
required: true
type: string
is_stable:
description: Whether this version is a stable (X.Y.Z) release.
required: true
type: boolean
is_active_major:
description: Whether this version targets the top lane (version.major >= highest stable major).
required: true
type: boolean
run-name: "馃攧 Update to ${{ inputs.version }}"
permissions:
contents: write
jobs:
update:
uses: ChilliCream/nitro-github-actions/.github/workflows/update-cli-version.yaml@1b12297b726e61b33f2cc8b60444faf339d95a4a
with:
version: ${{ inputs.version }}
is_stable: ${{ inputs.is_stable }}
is_active_major: ${{ inputs.is_active_major }}