Files
goose/.github/workflows/bundle-goose2-manual.yml
T
2026-04-20 14:36:31 +00:00

27 lines
656 B
YAML

name: "Manual Goose 2 Bundle (Unsigned)"
on:
workflow_dispatch:
inputs:
branch:
description: "Branch name to bundle app from"
required: true
type: string
cli-run-id:
description: "Run ID of a build-cli workflow to pull the goose binary from (optional, builds from source if empty)"
required: false
type: string
default: ""
jobs:
bundle-goose2:
uses: ./.github/workflows/bundle-goose2.yml
permissions:
id-token: write
contents: read
actions: read
with:
signing: false
ref: ${{ inputs.branch }}
cli-run-id: ${{ inputs.cli-run-id }}