mirror of
https://github.com/Suwayomi/docker-tachidesk.git
synced 2025-12-10 06:42:12 +01:00
22 lines
446 B
YAML
22 lines
446 B
YAML
name: Build Container Images
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tachidesk_release_type:
|
|
required: true
|
|
default: 'preview'
|
|
description: 'Suwayomi Release Type'
|
|
type: choice
|
|
options:
|
|
- stable
|
|
- preview
|
|
|
|
jobs:
|
|
go:
|
|
uses: ./.github/workflows/container.yml
|
|
with:
|
|
tachidesk_release_type: ${{ inputs.tachidesk_release_type }}
|
|
do_upload: true
|
|
secrets: inherit
|