forked from pandoc/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (74 loc) · 2.46 KB
/
build-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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Image Builder (manual)
on:
workflow_dispatch:
jobs:
configure:
name: Configure
runs-on: ubuntu-latest
outputs:
pandoc-version: ${{ steps.config.outputs.pandoc-version }}
stacks: ${{ steps.config.outputs.stacks }}
build: ${{ steps.config.outputs.build }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.after }}
- name: Configure build
id: config
run: |
if [ 'schedule' = "${{ github.event_name }}" ]; then
pandoc_versions="['edge']"
stacks="['alpine','ubuntu','static']"
build=true
else
versions="'edge'"
pandoc_versions="[${versions}]"
stacks="'alpine'"
stacks="[${stacks}]"
build=true
fi
printf "Setting outputs:\n"
printf " - pandoc-versions: %s\n" "$pandoc_versions"
printf " - stacks: %s\n" "$stacks"
printf " - build: %s\n" "$build"
printf 'pandoc-version=%s\n' "$pandoc_versions" >> $GITHUB_OUTPUT
printf 'stacks=%s\n' "$stacks" >> $GITHUB_OUTPUT
printf 'build=%s\n' "$build" >> $GITHUB_OUTPUT
# Build images and store them as tar archive
build:
if: ${{ fromJSON( needs.configure.outputs.build ) }}
name: Build
runs-on: ubuntu-latest
needs: configure
strategy:
fail-fast: false
matrix:
stack: ${{ fromJSON( needs.configure.outputs.stacks ) }}
version: ${{ fromJSON( needs.configure.outputs.pandoc-version ) }}
env:
PANDOC_VERSION: ${{ matrix.version }}
STACK: ${{ matrix.stack }}
steps:
- uses: actions/checkout@v4
- name: Show config
run: make show-args
- name: Build extra image
if: ${{ matrix.stack != 'static' }}
run: make extra
- name: Test extra image
if: ${{ matrix.stack != 'static' }}
run: make test-extra
- name: Push
if: >-
(github.event_name == 'push' || github.event_name == 'schedule') &&
github.repository == 'innofactororg/pandoc-dockerfiles'
run: |
# Log into registry
echo "${{ secrets.DOCKER_HUB_TOKEN }}" |
docker login -u ${{ secrets.DOCKER_HUB_USERNAME }} --password-stdin
#make push-minimal
if [ "$STACK" != 'static' ]; then
#make push-core
#make push-latex
make push-extra
fi