action-images/.gitea/workflows/publish_python_bookworm.yml
Louis Vallat 8b65127635
feat: added python on bookworm image
Signed-off-by: Louis Vallat <contact@louis-vallat.dev>
2024-09-08 00:11:33 +02:00

37 lines
941 B
YAML

name: "Build and publish \"Python 3 on Bookworm\" image"
defaults:
run:
shell: sh
on:
push:
branches:
- master
paths:
- python-bookworm/**
jobs:
publish-image:
name: "Build and publish"
runs-on: alpine
steps:
- name: Install dependencies
run: apk add git docker
- name: Check out repository code
uses: actions/checkout@v4
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: git.louis-vallat.dev
username: louis
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: ./python-bookworm
file: ./python-bookworm/Dockerfile
platforms: |
linux/amd64
push: true
tags: |
git.louis-vallat.dev/louis/action-images:python-bookworm