wrenix.eu/.forgejo/workflows/build.yaml
WrenIX d3f93cea7c
Some checks are pending
/ build (push) Waiting to run
fix: move to own git
2025-04-04 11:01:22 +02:00

42 lines
1.1 KiB
YAML

on:
push:
branches:
- "*"
tags:
- 'v*'
jobs:
build:
runs-on: docker
container:
image: quay.io/buildah/stable
steps:
- name: Git clone and checkout
uses: actions/checkout@v4
- name: Container generate metadata
uses: https://github.com/docker/metadata-action@v5
id: meta
with:
images: |
git.chaos.fyi/${{ github.repository }}
tags: |
type=schedule
type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Container-Registry login
uses: docker/login-action@v3
with:
registry: git.chaos.fyi/wrenix
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Container build
uses: https://github.com/redhat-actions/buildah-build@v2
with:
oci: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}