Bump version of SDK to 3.0.0 #1
Workflow file for this run
This file contains 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: bump-sdk-version | |
run-name: Bump version of SDK to ${{inputs.version}} | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version number (x.y.z)' | |
required: true | |
rally_ticket_number: | |
description: 'Rally ticket number (USxxxxxxx)' | |
required: true | |
jobs: | |
run-bump-version-script: | |
runs-on: macos-latest | |
steps: | |
- name: Check out the repository to the runner | |
uses: actions/checkout@v4 | |
- name: Run bump version script | |
run: ./scripts/bump-version.sh -v=${{inputs.version}} -t=${{inputs.rally_ticket_number}} |