-
Notifications
You must be signed in to change notification settings - Fork 252
89 lines (80 loc) · 2.69 KB
/
cd.yml
File metadata and controls
89 lines (80 loc) · 2.69 KB
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
name: CD
on:
release:
types: published
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
strategy:
fail-fast: false
matrix:
image:
- name: "ubuntu:latest"
suffix: ""
- name: "ubuntu:22.04"
suffix: "-ubuntu22.04"
- name: "ubuntu:20.04"
suffix: "-ubuntu20.04"
- name: "ubuntu:18.04"
suffix: "-ubuntu18.04"
- name: "alpine"
suffix: "-alpine"
- name: "scratch"
suffix: "-scratch"
dockerfile: "./build/package/Dockerfile.scratch"
# RedHat-based distributions
- name: "rockylinux:9"
suffix: "-rocky9"
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
logout: false
- name: Build and push
id: docker-build
uses: docker/build-push-action@v6
with:
push: true
file: ${{ matrix.image.dockerfile || './build/package/Dockerfile' }}
platforms: linux/amd64,linux/arm64
build-args: |
VERSION=${{ github.event.release.tag_name }}
APP_IMAGE=${{ matrix.image.name }}
tags: |
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ github.event.release.tag_name }}${{ matrix.image.suffix }}
${{ github.event.release.target_commitish == 'master' && format('ghcr.io/{0}/{1}:latest{2}', github.repository_owner, github.event.repository.name, matrix.image.suffix) || '' }}
build-playground:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
logout: false
- name: Build and push
id: docker-build
uses: docker/build-push-action@v4
with:
push: true
file: ./build/package/Dockerfile_playground
platforms: linux/amd64,linux/arm64
build-args: |
VERSION=${{ github.event.release.tag_name }}
tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}-playground:${{ github.event.release.tag_name }}