-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (71 loc) · 2.64 KB
/
build-python-debian.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Build Python Image
run-name: ${{ github.actor }} builds new python docker image
on:
push:
branches:
- main
schedule:
- cron: "20 4 * * 0"
env:
REGISTRY: ghcr.io
jobs:
build:
name: Build and push Docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3.2.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract Python Version from Dockerfile
id: get-python-version
shell: bash
run: |
if [[ $(grep -oP '(?<=^FROM python:)[0-9.]*' debian.Dockerfile) =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]; then
echo "MAJOR=${BASH_REMATCH[1]}" >> $GITHUB_ENV
echo "MINOR=${BASH_REMATCH[2]}" >> $GITHUB_ENV
echo "PATCH=${BASH_REMATCH[3]}" >> $GITHUB_ENV
echo "SEMVER=$MAJOR.$MINOR.$PATCH" >> $GITHUB_ENV
else
exit -1
fi
- name: Extract metadata for the Docker image
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}
tags: |
type=raw,value=latest
type=raw,value=debian
type=raw,prefix=debian-,value=${{ env.MAJOR }}
type=raw,prefix=debian-,value=${{ env.MAJOR }}.${{ env.MINOR }}
type=raw,prefix=debian-,value=${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./debian.Dockerfile
build-args: |
BASE_NAME=${{github.repository}}:debian
BUILDTIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}
REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
SOURCE_URL=${{ github.server_url }}/${{ github.repository }}
platforms: |
linux/amd64
linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: |
${{ steps.meta.outputs.tags }}
provenance: false # Fix for unknown/unknown image build
cache-from: type=gha
cache-to: type=gha,mode=max