Publish E2E Test Suites: Snapshot Release #21
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: Publish E2E Test Suites | |
run-name: ${{ format('Publish E2E Test Suites{0} {1} Release', ':', inputs.release_type) }} | |
on: | |
workflow_dispatch: | |
inputs: | |
release_type: | |
type: choice | |
description: 'The type of release' | |
options: | |
- Major | |
- Minor | |
- Patch | |
- Snapshot | |
version_number_input: | |
description: If set, the version number will not be incremented and the given number will be used. | |
type: string | |
default: '' | |
jobs: | |
Image: | |
uses: IABTechLab/uid2-shared-actions/.github/workflows/[email protected] | |
with: | |
release_type: ${{ inputs.release_type }} | |
version_number_input: ${{ inputs.version_number_input }} | |
cloud_provider: 'default' | |
java_version: '17' | |
force_release: 'yes' | |
skip_tests: true | |
secrets: inherit |