Generate and Publish SDK Sources #45
This file contains hidden or 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: Generate and Publish SDK Sources | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: | | |
| SDK Version. | |
| E.g., 1.0.0, 1.0.1, 1.0.0-SNAPSHOT, etc. | |
| required: true | |
| type: string | |
| sdk_repo_ref: | |
| description: | | |
| Branch or tag to checkout on the `expediagroup-java-sdk` repository. | |
| type: string | |
| default: 'legacy' | |
| jobs: | |
| generate-and-publish-sources: | |
| uses: ExpediaGroup/expediagroup-java-sdk/.github/workflows/selfserve-full-workflow.yaml@legacy | |
| secrets: inherit | |
| with: | |
| name: rapid | |
| version: ${{ inputs.version }} | |
| transformations: "--headers --endpoint /v3 --operationIdsToTags" | |
| repository: 'ExpediaGroup/rapid-java-sdk' | |
| sdk_repo_ref: ${{ inputs.sdk_repo_ref }} |