-
-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (41 loc) · 1.34 KB
/
image.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
name: image
on:
pull_request:
paths: [docker/*, .github/workflows/image.yml]
push:
branches: [main, test-me-*]
paths: [docker/*, .github/workflows/image.yml]
concurrency:
# serialize runs on the default branch
group: ${{ github.event_name == 'push' && github.workflow || github.sha }}${{ github.workflow }}
jobs:
image:
strategy:
matrix:
arch: [amd64, arm64]
env:
TARGET_TAG: ghcr.io/getsentry/pypi-manylinux-${{ matrix.arch }}-ci
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: enable cross build
run: docker run --rm --privileged tonistiigi/binfmt --install arm64
if: matrix.arch == 'arm64'
- name: build
run: |
args=()
if docker pull -q "$TARGET_TAG"; then
args+=(--cache-from "$TARGET_TAG")
fi
docker buildx build \
"${args[@]}" \
--platform linux/${{ matrix.arch }} \
--tag "${TARGET_TAG}:${GITHUB_SHA}" \
docker
docker tag "${TARGET_TAG}:${GITHUB_SHA}" "${TARGET_TAG}:latest"
- name: push
run: |
docker login --username '${{ github.actor }}' --password-stdin ghcr.io <<< '${{ secrets.GITHUB_TOKEN }}'
docker push "${TARGET_TAG}:${GITHUB_SHA}"
docker push "${TARGET_TAG}:latest"
if: github.event_name != 'pull_request'