Update actions/checkout action to v4.2.0 (#64) #75
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: Post-merge | |
on: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
workflow_dispatch: | |
inputs: | |
scope: | |
description: 'Select which component of the version should be incremented' | |
required: true | |
default: 'minor' | |
type: choice | |
options: | |
- major | |
- minor | |
- patch | |
stage: | |
description: 'Select which stage of the release should be published' | |
required: true | |
default: 'snapshot' | |
type: choice | |
options: | |
- final | |
- snapshot | |
jobs: | |
build: | |
uses: kyhule/polyworld-workflows/.github/workflows/post-merge.yml@a26f05dbaa65b38aef88fd576709fdce64059d07 | |
secrets: inherit | |
with: | |
version-scope: ${{ inputs.scope || vars.SCOPE }} | |
version-stage: ${{ inputs.stage || vars.STAGE }} | |
setup-android: false |