mirror of
https://github.com/Py-KMS-Organization/py-kms.git
synced 2026-04-21 06:03:43 +00:00
Update workflows to also build tagged releases
Signed-off-by: simonmicro <simon@simonmicro.de>
This commit is contained in:
parent
565ef8d500
commit
62508dfc49
5 changed files with 104 additions and 14 deletions
62
.github/workflows/bake_to_version.yml
vendored
Normal file
62
.github/workflows/bake_to_version.yml
vendored
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue