2024-01-04 19:45:48 +00:00
|
|
|
#
|
|
|
|
name: Create and publish a Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-01-06 09:58:47 +00:00
|
|
|
branches: ["main"]
|
2024-01-04 19:45:48 +00:00
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
env:
|
|
|
|
REGISTRY: gitea.bruyant.xyz
|
|
|
|
IMAGE_NAME: ${{ gitea.repository }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-push-image:
|
|
|
|
runs-on: ubuntu-latest
|
2024-01-06 09:58:47 +00:00
|
|
|
container:
|
2024-01-04 19:49:22 +00:00
|
|
|
image: catthehacker/ubuntu:act-latest
|
2024-01-04 19:45:48 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
2024-01-06 09:58:47 +00:00
|
|
|
|
|
|
|
- name: Create Kubeconfig
|
|
|
|
run: |
|
|
|
|
mkdir $HOME/.kube
|
|
|
|
echo "${{ secrets.BUILDX_KUBECONFIG }}" > $HOME/.kube/config
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
with:
|
|
|
|
driver: kubernetes
|
|
|
|
driver-opts: |
|
|
|
|
namespace=buildx
|
|
|
|
serviceaccount=buildx
|
|
|
|
qemu.install=true
|
|
|
|
|
2024-01-04 19:45:48 +00:00
|
|
|
- name: Log in to the Container registry
|
2024-11-07 22:02:35 +00:00
|
|
|
uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0
|
2024-01-04 19:45:48 +00:00
|
|
|
with:
|
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ gitea.actor }}
|
2024-01-06 10:14:38 +00:00
|
|
|
password: ${{ secrets.PACKAGE_TOKEN }}
|
2024-01-06 09:58:47 +00:00
|
|
|
|
2024-01-04 19:45:48 +00:00
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
|
id: meta
|
2024-11-14 08:06:52 +00:00
|
|
|
uses: docker/metadata-action@44d81d6d2a5a935e1a481942268529623f1f5ccd
|
2024-01-04 19:45:48 +00:00
|
|
|
with:
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
2024-01-12 18:40:51 +00:00
|
|
|
tags: |
|
2024-01-13 07:45:34 +00:00
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=ref,event=branch
|
2024-01-12 18:40:51 +00:00
|
|
|
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
|
2024-01-06 09:58:47 +00:00
|
|
|
|
2024-01-04 19:45:48 +00:00
|
|
|
- name: Build and push Docker image
|
2024-11-07 22:02:34 +00:00
|
|
|
uses: docker/build-push-action@5e99dacf67635c4f273e532b9266ddb609b3025a
|
2024-01-04 19:45:48 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
2024-01-12 18:26:19 +00:00
|
|
|
tags: |
|
|
|
|
${{ steps.meta.outputs.tags }}
|
2024-01-04 19:45:48 +00:00
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|