-
Notifications
You must be signed in to change notification settings - Fork 6
73 lines (63 loc) · 2.21 KB
/
main.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
on:
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest-16-cores
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log into Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build for linux/amd64
uses: docker/build-push-action@v3
with:
build-args: |
VCS_REF=${{ github.sha }}
load: true
platforms: linux/amd64
tags: cs50/server:amd64
cache-from: type=registry,ref=cs50/server:amd64-buildcache
cache-to: type=registry,ref=cs50/server:amd64-buildcache,mode=max
- name: Squash for linux/amd64
run: |
pip3 install docker-squash
docker-squash --tag cs50/server:amd64 cs50/server:amd64
- name: Push linux/amd64 build to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push cs50/server:amd64
- name: Build for linux/arm64
uses: docker/build-push-action@v3
with:
build-args: |
VCS_REF=${{ github.sha }}
load: true
platforms: linux/arm64
tags: cs50/server:arm64
cache-from: type=registry,ref=cs50/server:arm64-buildcache
cache-to: type=registry,ref=cs50/server:arm64-buildcache,mode=max
- name: Squash for linux/arm64
run: |
pip3 install docker-squash
docker-squash --tag cs50/server:arm64 cs50/server:arm64
- name: Push linux/arm64 build to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker push cs50/server:arm64
- name: Create multi-arch manifest and push to Docker Hub
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker manifest create cs50/server:latest \
--amend cs50/server:amd64 \
--amend cs50/server:arm64
docker manifest push cs50/server:latest