- Home controller with hero and services sections - Nav rebuilt on install: Home, Services, About, FAQ, Contact (CTA), Book An Appointment (CTA) - Entrypoint uses IS_SETUP check so failed installs retry on restart - Gitea Actions workflow builds and pushes multi-arch image to forge.quinefoundation.com Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
776 B
YAML
33 lines
776 B
YAML
name: Build and push image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: forge.quinefoundation.com
|
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: forge.quinefoundation.com/ironmagma/riverside:latest
|