Update Versions #8
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
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "The semantic version to use (no leading 'v'). Will update versions for base and Redis SDK." | |
required: true | |
branch: | |
description: 'Branch to checkout and push updates to' | |
required: true | |
name: Update Versions | |
jobs: | |
update-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update launchdarkly-server-sdk version | |
uses: ./.github/actions/update-versions | |
with: | |
package: launchdarkly-server-sdk | |
branch: ${{ inputs.branch }} | |
version: ${{ inputs.version }} | |
- name: Update launchdarkly-server-sdk-redis version | |
uses: ./.github/actions/update-versions | |
with: | |
package: launchdarkly-server-sdk-redis | |
branch: ${{ inputs.branch }} | |
version: ${{ inputs.version }} |