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: 📦🏗 Build Package(s) | |
on: | |
workflow_dispatch: # Run when manually triggered | |
inputs: | |
branch: | |
description: 'The branch to act on' | |
default: 'main' | |
required: false | |
type: string | |
release_channel: | |
description: 'The release channel - Stable or Unstable' | |
default: 'stable' | |
required: false | |
type: choice | |
options: | |
- Stable | |
- Unstable | |
workflow_call: # Run when called by another workflow | |
inputs: | |
branch: | |
description: 'The branch to act on' | |
default: 'main' | |
required: false | |
type: string | |
release_channel: | |
description: 'The release channel - Stable or Unstable' | |
default: 'stable' | |
required: false | |
type: choice | |
options: | |
- Stable | |
- Unstable | |
run-name: ${{ inputs.release_channel }} Package Build triggered by ${{ github.actor }} on branch ${{ inputs.branch }} |