Files
wiki/.gitea/workflows/build-publish.yaml
vorpax 303645f3a5
All checks were successful
Build and Push Quartz Wiki / build-and-push (push) Successful in 46s
fix gitea action
2026-01-05 23:11:37 +01:00

35 lines
730 B
YAML

name: Build and Push Quartz
env:
REGISTRY: "gitea.vorpax.dev"
IMAGE_NAME: "vorpax/wiki"
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Gitea Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ gitea.actor }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}