-
Notifications
You must be signed in to change notification settings - Fork 1
81 lines (74 loc) · 2.82 KB
/
depot.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
name: operator
on:
push:
branches:
- main
pull_request:
branches:
- '*'
env:
REGISTRY: ghcr.io
jobs:
build:
name: Depot Build
runs-on: depot-ubuntu-22.04-4
strategy:
matrix:
arch: [amd64, arm64]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Login to Github Container Registry (GHCR)
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Depot CLI
uses: depot/setup-action@v1
env:
DEPOT_TOKEN: ${{ secrets.DEPOT_API_TOKEN }}
- name: Build and Push Docker Image with Depot
run: |
depot build . \
--project hs0gfs4l0l \
--file Dockerfile \
--tag ${{ env.REGISTRY }}/${{ github.repository }}:${{ matrix.arch }}-latest \
--platform linux/${{ matrix.arch }} \
--build-arg ARCH=${{ matrix.arch }} \
--cache-from type=gha,scope=build-${{ matrix.arch }} \
--cache-to type=gha,mode=max,scope=build-${{ matrix.arch }} \
--load
if [ "${{ github.ref }}" == "refs/heads/main" ]; then
docker push ${{ env.REGISTRY }}/${{ github.repository }}:${{ matrix.arch }}-latest
fi
env:
DEPOT_TOKEN: ${{ secrets.DEPOT_API_TOKEN }}
manifest:
name: Create and Push Multi-Architecture Manifest
runs-on: ubuntu-latest
needs: build
steps:
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Install jq
run: sudo apt-get install -y jq
- name: Login to Docker Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create and Push Docker Manifest
if: ${{ github.ref == 'refs/heads/main' }}
run: |
docker pull --platform linux/amd64 ${{ env.REGISTRY }}/${{ github.repository }}:amd64-latest
docker pull --platform linux/arm64 ${{ env.REGISTRY }}/${{ github.repository }}:arm64-latest
docker manifest create ${{ env.REGISTRY }}/${{ github.repository }}:latest \
--amend ${{ env.REGISTRY }}/${{ github.repository }}:amd64-latest \
--amend ${{ env.REGISTRY }}/${{ github.repository }}:arm64-latest
docker manifest annotate ${{ env.REGISTRY }}/${{ github.repository }}:latest ${{ env.REGISTRY }}/${{ github.repository }}:amd64-latest --arch amd64
docker manifest annotate ${{ env.REGISTRY }}/${{ github.repository }}:latest ${{ env.REGISTRY }}/${{ github.repository }}:arm64-latest --arch arm64
docker manifest push ${{ env.REGISTRY }}/${{ github.repository }}:latest
env:
DOCKER_CLI_EXPERIMENTAL: enabled