Updated headless bundle #309
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: 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 |