Skip to content

Commit

Permalink
Fix pre-release workflow to pass version parameters to script
Browse files Browse the repository at this point in the history
  • Loading branch information
gvdongen committed May 3, 2024
1 parent e529893 commit cae14ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Bump sdk-typescript
if: github.event.inputs.sdkTypescriptVersion != ''
run: ./.tools/update_node_examples.sh
run: ./.tools/update_node_examples.sh ${{ inputs.sdkTypescriptVersion }}
- name: Run Node tests
if: github.event.inputs.sdkTypescriptVersion != ''
run: ./.tools/run_node_tests.sh
Expand All @@ -51,7 +51,7 @@ jobs:
uses: gradle/actions/setup-gradle@v3
- name: Bump sdk-java
if: github.event.inputs.sdkJavaVersion != ''
run: ./.tools/update_jvm_examples.sh
run: ./.tools/update_jvm_examples.sh ${{ inputs.sdkJavaVersion }}
- name: Run JVM tests
if: github.event.inputs.sdkJavaVersion != ''
run: ./.tools/run_jvm_tests.sh
Expand Down

0 comments on commit cae14ca

Please sign in to comment.