-
Notifications
You must be signed in to change notification settings - Fork 29
51 lines (43 loc) · 1.6 KB
/
00-s6-overlay.yml
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
51
################################################################################
# The setups in this file belong to the project https://code.shin.company/php
# I appreciate you respecting my intellectual efforts in creating them.
# If you intend to copy or use ideas from this project, please credit properly.
# Author: SHIN Company <[email protected]>
# License: https://code.shin.company/php/blob/main/LICENSE
################################################################################
name: Publish S6
################################################################################
################################################################################
on:
workflow_call:
inputs:
tag_prefix:
required: false
type: string
default: ""
workflow_dispatch:
################################################################################
################################################################################
jobs:
s6-overlay:
uses: ./.github/workflows/template-common.yml
secrets: inherit
with:
app_name: "base-s6"
os: "alpine"
linux-s6:
name: ${{ matrix.os == '' && 'debian' || matrix.os }}-s6
uses: ./.github/workflows/template-common.yml
secrets: inherit
strategy:
matrix:
os:
- ""
- "ubuntu"
- "alpine"
with:
app_name: "base-os"
os: ${{ matrix.os }}
tag_prefix: ${{ inputs.tag_prefix }}
################################################################################
################################################################################