mirror of
https://github.com/block/goose.git
synced 2026-07-17 12:56:20 +02:00
29 lines
607 B
YAML
29 lines
607 B
YAML
name: Manual Desktop Bundle (Unsigned)
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
branch:
|
|
description: 'Branch name to bundle app from'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
bundle-desktop-unsigned:
|
|
uses: ./.github/workflows/bundle-desktop.yml
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
with:
|
|
signing: false
|
|
ref: ${{ inputs.branch }}
|
|
|
|
bundle-desktop-intel-unsigned:
|
|
uses: ./.github/workflows/bundle-desktop-intel.yml
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
with:
|
|
signing: false
|
|
ref: ${{ inputs.branch }}
|