mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-27 06:33:32 +03:00
26 lines
477 B
YAML
26 lines
477 B
YAML
name: Build Selfhost Image
|
|
|
|
on:
|
|
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 }}
|