Skip to content

Add GitHub Actions config to build 3.12 #1

Add GitHub Actions config to build 3.12

Add GitHub Actions config to build 3.12 #1

Workflow file for this run

name: Build Images
on: [push]
jobs:
build:
name: Build image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get current date
id: date
run: echo "::set-output name=date::$(date -u +'%Y-%m-%dT%H:%m:%SZ')"
- name: Buildah Action
uses: redhat-actions/buildah-build@v2
with:
image: docker.io/groovytron/python
tags: 3.12
containerfiles: |
./3.12/Dockerfile
build-args: |
BUILD_DATE=${{ steps.date.outputs.date }}
VCS_REF=${{ github.sha }}
POETRY_VERSION=1.8.4