-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (53 loc) · 1.51 KB
/
docker-dev.yml
File metadata and controls
60 lines (53 loc) · 1.51 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
name: Docker-Dev
on:
push:
branches:
- dev*
paths:
- "Dockerfile"
- ".github/workflows/docker-dev.yml"
- "src/**"
env:
GHCR_SLUG: ghcr.io/${{ github.repository }}
jobs:
build:
strategy:
matrix:
arch: [amd64, arm64]
include:
- arch: amd64
runner: ubuntu-24.04
tag: dev-amd64
- arch: arm64
runner: ubuntu-24.04-arm
tag: dev-arm64
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Login to GitHub Container Registry (ghcr.io)
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.GHCR_SLUG }}
labels: |
org.opencontainers.image.title=PreDelDomain
org.opencontainers.image.description=Pre-delete domain query.
org.opencontainers.image.vendor=Jetsung Chan
tags: ${{ matrix.tag }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build (without push)
uses: docker/bake-action@v6
with:
files: |
./docker-bake.hcl
cwd://${{ steps.meta.outputs.bake-file }}
targets: ${{ matrix.tag }}
push: ${{ github.event_name != 'pull_request' }}