-
Notifications
You must be signed in to change notification settings - Fork 218
85 lines (75 loc) · 2.21 KB
/
docker-dev.yml
File metadata and controls
85 lines (75 loc) · 2.21 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
name: Docker-Dev
on:
push:
branches:
- dev
paths:
- ".github/workflows/docker-dev.yml"
- "docker/Dockerfile"
- "src/**"
- "Cargo.toml"
env:
package_name: simple-http-server
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 }}
tags: ${{ matrix.tag }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./docker/Dockerfile
platforms: linux/${{ matrix.arch }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ env.GHCR_SLUG }}:${{ matrix.tag }}
manifest:
needs: build
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create and push multi-arch manifest
run: |
docker manifest create ${{ env.GHCR_SLUG }}:dev \
--amend ${{ env.GHCR_SLUG }}:dev-amd64 \
--amend ${{ env.GHCR_SLUG }}:dev-arm64
docker manifest push ${{ env.GHCR_SLUG }}:dev
shell: bash
- uses: actions/delete-package-versions@v5
continue-on-error: true
with:
package-name: ${{ env.package_name }}
package-type: 'container'
min-versions-to-keep: 2
delete-only-untagged-versions: 'true'