Release SDK #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: Release SDK | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: | | |
Branch to release the SDK from. | |
Defaults to the branch the action is being run from. | |
type: string | |
default: '' | |
jobs: | |
run-examples: | |
strategy: | |
matrix: | |
jdk: [ 8, 11, 17, 21 ] | |
uses: ./.github/workflows/run-examples.yaml | |
secrets: inherit | |
with: | |
branch: ${{ inputs.branch }} | |
jdk: ${{ matrix.jdk }} | |
release-sdk: | |
uses: ExpediaGroup/expediagroup-java-sdk/.github/workflows/selfserve-release-sdk.yaml@v20241013 | |
needs: [ run-examples ] | |
secrets: inherit | |
with: | |
branch: ${{ inputs.branch }} |