-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (33 loc) · 1.03 KB
/
build.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
name: Build and push multi-arch images
on:
push:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Code setup
uses: actions/checkout@v3
with:
submodules: recursive
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.NAME }}
password: ${{ secrets.TOKEN }}
- name: Build and push - Python 2.7
run: BASE_IMAGE=python:2.7-slim-buster IMAGE_TAG=2.7 make buildx
- name: Build and push - Python 3.7
run: BASE_IMAGE=python:3.7-slim-bullseye IMAGE_TAG=3.7 make buildx
- name: Build and push - Python 3.8
run: BASE_IMAGE=python:3.8-slim-bullseye IMAGE_TAG=3.8 make buildx
- name: Build and push - Python 3.10
run: BASE_IMAGE=python:3.10-slim-bookworm IMAGE_TAG=3.10 make buildx