poire.dev/.forgejo/workflows/website.yaml
Aram Peres 84de642ee7
All checks were successful
/ build (push) Successful in 18s
Fix registry
2025-08-23 02:54:24 -04:00

25 lines
706 B
YAML

on:
push:
branches:
- master
paths:
- 'website/**'
- '**/website.yaml'
jobs:
build:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Extract the tag
id: extract_tag
run: echo "::set-output name=tag::$(echo ${{ forge.sha }} | cut -c1-10)"
- name: Install Buildah
run: apt-get update && apt-get install -y buildah
- name: Buildah Action
uses: redhat-actions/buildah-build@v2
with:
image: git.poire.dev/aramperes/poire.dev
tags: ${{ steps.extract_tag.outputs.tag }}
context: ./website
containerfiles: ./website/docker/Dockerfile