mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
66 lines
2.2 KiB
YAML
66 lines
2.2 KiB
YAML
name: build-and-push-python-pg
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
architecture:
|
|
description: 'Architecture'
|
|
required: true
|
|
default: 'linux/amd64'
|
|
type: choice
|
|
options:
|
|
- linux/amd64
|
|
- linux/arm64
|
|
- linux/amd64,linux/arm64
|
|
jobs:
|
|
build-and-push-python-pg-to-ghcr:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check Disk Space
|
|
run: df -h
|
|
- name: Free Disk Space (Ubuntu)
|
|
uses: jlumbroso/free-disk-space@main
|
|
with:
|
|
tool-cache: true
|
|
android: true
|
|
dotnet: true
|
|
haskell: true
|
|
large-packages: true
|
|
docker-images: true
|
|
swap-storage: true
|
|
- name: Check Disk Space
|
|
run: df -h
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.ref_name }}
|
|
- name: Prepare
|
|
id: prepare
|
|
run: |
|
|
DOCKER_IMAGE=ghcr.io/1panel-dev/maxkb-python-pg
|
|
DOCKER_PLATFORMS=${{ github.event.inputs.architecture }}
|
|
TAG_NAME=python3.11-pg17.4
|
|
DOCKER_IMAGE_TAGS="--tag ${DOCKER_IMAGE}:${TAG_NAME}"
|
|
echo ::set-output name=docker_image::${DOCKER_IMAGE}
|
|
echo ::set-output name=version::${TAG_NAME}
|
|
echo ::set-output name=buildx_args::--platform ${DOCKER_PLATFORMS} --no-cache \
|
|
--build-arg VERSION=${TAG_NAME} \
|
|
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
|
|
--build-arg VCS_REF=${GITHUB_SHA::8} \
|
|
${DOCKER_IMAGE_TAGS} .
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
with:
|
|
# Until https://github.com/tonistiigi/binfmt/issues/215
|
|
image: tonistiigi/binfmt:qemu-v7.0.0-28
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GH_TOKEN }}
|
|
- name: Docker Buildx (build-and-push)
|
|
run: |
|
|
docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} -f installer/Dockerfile-python-pg |