π Update to 16.0.0-rc.1.43 #35
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@main | |
| with: | |
| version: ${{ inputs.version }} | |
| is_stable: ${{ inputs.is_stable }} | |
| is_active_major: ${{ inputs.is_active_major }} |