-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (44 loc) · 1.38 KB
/
build-python3.yaml
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
---
name: Build the Python3 container
on:
push:
paths:
- "python3/**"
- ".github/workflows/build-python3.yaml"
schedule:
- cron: '0 7 * * *'
workflow_dispatch:
jobs:
build-push-python3:
runs-on: "ubuntu-22.04"
permissions:
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: "linux/amd64,linux/arm64"
# The latest version will lead to segmentation fault.
image: "tonistiigi/binfmt:qemu-v7.0.0-28"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: "./python3"
platforms: "linux/amd64,linux/arm64"
# only push the latest tag on the main branch
push: "${{ github.ref == 'refs/heads/main' }}"
tags: |
ghcr.io/openconext/openconext-basecontainers/python3:latest
ghcr.io/openconext/openconext-basecontainers/python3:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha