Update controller.ts #12
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 Selfhost Image | |
on: | |
push: | |
branches: | |
- stable # Adjust to target a specific branch if needed | |
workflow_dispatch: | |
inputs: | |
flavor: | |
description: 'Select distribution to build' | |
type: choice | |
default: canary | |
options: | |
- canary | |
- beta | |
- stable | |
permissions: | |
contents: 'write' | |
id-token: 'write' | |
packages: 'write' | |
jobs: | |
build-image: | |
name: Build Image | |
uses: ./.github/workflows/build-server-image.yml | |
with: | |
flavor: ${{ github.event.inputs.flavor || 'stable' }} # Default to stable on push |