Skip to content

Remove 3.8, add 3.13 #4

Remove 3.8, add 3.13

Remove 3.8, add 3.13 #4

Workflow file for this run

# Image Publication
# =================
#
# This workflow builds and registers the python-build image with the Docker Hub.
---
name: 🌄 Imaging
# Triggers
# --------
#
# Run on any push to the Dockerfile on the main branch.
on:
push:
branches:
- main
paths:
- 'Dockerfile'
- '.github/workflows/imaging.yaml'
# Jobs
# ----
#
# What to do.
jobs:
imaging:
name: 🌠 Python Build Imaging
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
-
name: 💳 Docker Hub Identification
uses: docker/login-action@v3
with:
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{secrets.DOCKERHUB_TOKEN}}
-
name: 📚 Repository Checkout
uses: actions/checkout@v4
-
name: 🎰 QEMU Multiple Machine Emulation
uses: docker/setup-qemu-action@v3
-
name: 🚢 Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: 🧱 Image Construction and Publication
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{secrets.DOCKERHUB_USERNAME}}/python-build:${{matrix.python-version}}
...