-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (45 loc) · 1.07 KB
/
release-manual.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
name: "Manual Release"
concurrency:
group: container-release
cancel-in-progress: false
on:
workflow_dispatch:
inputs:
app:
description: "Apps (ex: radarr,sonarr)"
default: ""
required: true
channels:
description: "Channels (ex: master,develop)"
default: ""
required: true
push:
description: "Push"
type: boolean
default: true
required: true
env:
TOKEN: ${{ secrets.TOKEN }}
jobs:
simple-checks:
name: Simple Checks
uses: ./.github/workflows/simple-checks.yaml
build-images:
name: Build Images
needs: simple-checks
uses: ./.github/workflows/build-images.yaml
secrets: inherit
permissions:
packages: write
with:
appsToBuild: ${{ inputs.appsToBuild }}
channelsToBuild: ${{ inputs.channelsToBuild }}
force: true
pushImages: ${{ fromJSON(inputs.push) }}
sendNotifications: true
render-readme:
name: Render Readme
needs: build-images
uses: ./.github/workflows/render-readme.yaml
secrets: inherit