Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Initial version

Initial version #6

Workflow file for this run

---
name: Build and release
on:
push:
branches:
- "main"
- "development"
tags:
- "v*"
workflow_dispatch:
concurrency:
group: build-and-release
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
build_container:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to image registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/${{ github.repository_owner }}/k8s-ycl
tags: |
type=raw,value=rolling,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
type=ref,event=branch
type=ref,event=tag
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}