Skip to content

Updated headless bundle #309

Updated headless bundle

Updated headless bundle #309

Workflow file for this run

name: Docker builds
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: Purge builder and caches
run: docker buildx rm --all-inactive --force && docker buildx prune --all --force
- name: Build and push - Python 3.8
run: make buildx PYTHON_VERSION=3.8
- name: Purge builder and caches
run: docker buildx rm --all-inactive --force && docker buildx prune --all --force
- name: Build and push - Python 3.10
run: make buildx PYTHON_VERSION=3.10
- name: Purge builder and caches
run: docker buildx rm --all-inactive --force && docker buildx prune --all --force
- name: Build and push - Python 3.12
run: make buildx PYTHON_VERSION=3.12