mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2026-01-20 23:20:19 +01:00
63 lines
2 KiB
YAML
63 lines
2 KiB
YAML
name: Build version tags
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
bake-latest:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
- name: Docker Setup QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
with:
|
|
platforms: all
|
|
- name: Docker Setup Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build (full)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/docker-py3-kms/Dockerfile
|
|
platforms: linux/amd64,linux/386,linux/arm64/v8,linux/arm/v7,linux/arm/v6
|
|
push: true
|
|
tags: |
|
|
pykmsorg/py-kms:${{ github.ref_name }}-full
|
|
ghcr.io/py-kms-organization/py-kms:${{ github.ref_name }}-full
|
|
build-args: |
|
|
BUILD_COMMIT=${{ github.sha }}
|
|
BUILD_REFERENCE=${{ github.ref_name }}
|
|
- name: Build (minimal)
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ./docker/docker-py3-kms-minimal/Dockerfile
|
|
platforms: linux/amd64,linux/386,linux/arm64/v8,linux/arm/v7,linux/arm/v6
|
|
push: true
|
|
tags: |
|
|
pykmsorg/py-kms:${{ github.ref_name }}
|
|
ghcr.io/py-kms-organization/py-kms:${{ github.ref_name }}
|
|
pykmsorg/py-kms:${{ github.ref_name }}-minimal
|
|
ghcr.io/py-kms-organization/py-kms:${{ github.ref_name }}-minimal
|
|
build-args: |
|
|
BUILD_COMMIT=${{ github.sha }}
|
|
BUILD_REFERENCE=${{ github.ref_name }}
|