-
Notifications
You must be signed in to change notification settings - Fork 0
115 lines (95 loc) · 2.97 KB
/
docker-builder.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
on:
workflow_call:
inputs:
WORKDIR:
description: "The directory in which the devcontainer configuration is located."
type: string
required: true
IMAGE_NAME:
description: "The name of the image to build."
type: string
required: true
env:
WORKDIR: ${{ inputs.WORKDIR }}
jobs:
matrix:
runs-on: ubuntu-latest
name: 'Matrix'
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Set up Deno'
uses: denoland/setup-deno@v2
with:
deno-version: v1.x
- name: 'Load configurations'
id: configurations
run: >
echo "configurations=$(
deno run
--allow-read
--allow-env
./scripts/configuration.ts
)" >> $GITHUB_OUTPUT
- name: 'Check configurations'
if: steps.configurations.outputs.configurations == ''
run: exit 1
outputs:
configurations: ${{ steps.configurations.outputs.configurations }}
dockerfile:
needs: matrix
runs-on: ubuntu-latest
name: 'Dockerfile.${{ matrix.configuration }}'
strategy:
fail-fast: false
matrix:
configuration: ${{ fromJson(needs.matrix.outputs.configurations) }}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Set up Deno'
uses: denoland/setup-deno@v2
with:
deno-version: v1.x
- name: 'Generate Dockerfile'
run: >
deno run
--allow-read
--allow-write
--allow-env
./scripts/generate.ts ${{ matrix.configuration }}
- name: 'Upload Dockerfile'
uses: actions/upload-artifact@v4
with:
name: Dockerfile.${{ matrix.configuration }}
path: Dockerfile.${{ matrix.configuration }}
if-no-files-found: error
- name: 'Set up Docker QEMU'
uses: docker/setup-qemu-action@v3
- name: 'Setup Docker buildx'
uses: docker/setup-buildx-action@v3
- name: Login to Docker registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: 'Extract Docker metadata'
id: meta
uses: docker/metadata-action@v5
with:
images: lordchunk/${{ inputs.IMAGE_NAME }}
tags: |
type=raw,value=${{ matrix.configuration }}
- name: Build and push
uses: docker/[email protected]
with:
platforms: linux/arm64,linux/amd64
context: .
file: Dockerfile.${{ matrix.configuration }}
push: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
tags: ghcr.io/${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
# Use GitHub Actions cache
cache-from: type=gha
cache-to: type=gha,mode=max