Example app: PR dependency update #3
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: 'Example app: PR dependency update' | |
on: | |
push: {} | |
workflow_dispatch: | |
inputs: | |
repoName: | |
description: 'Repo name' | |
required: true | |
type: choice | |
default: 'semantic-search-example' | |
options: | |
- 'semantic-search-example' | |
versionTag: | |
description: 'Release tag to install' | |
required: true | |
type: choice | |
default: 'latest' | |
options: | |
- 'latest' | |
- 'next' | |
# prevent concurrent releases | |
concurrency: | |
group: npm-release | |
cancel-in-progress: true | |
jobs: | |
bump-example-app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Bump client dep in example project | |
uses: ./.github/actions/update-example-app | |
with: | |
repository_name: ${{ github.event.inputs.repoName }} | |
client_version: ${{ github.event.inputs.versionTag }} |