More consistent frontend code #193
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 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 | |
- name: Build and push - Python 3.12 | |
run: BASE_IMAGE=python:3.12-slim-bookworm IMAGE_TAG=3.12 make buildx |