Skip to content

Workflow file for this run

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 }}