Files
brain-of-reese/.gitea/workflows/build-and-push.yml
T
ducoterra c37477d3f9
Build and Push Containers / test (push) Failing after 14s
Build and Push Containers / build-and-push (push) Skipped
add gitea build and push
2026-08-24 11:01:06 -04:00

60 lines
1.4 KiB
YAML

name: Build and Push Containers
on:
push:
branches:
- main
release:
types:
- published
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Lint and typecheck
run: uv run ruff check app.py && uv run pyright app.py
build-and-push:
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: gitea.reeseapps.com
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: gitea.reeseapps.com/Experimental/brain-of-reese
tags: |
type=raw,value=main,enable=${{ github.ref == 'refs/heads/main' }}
type=ref,event=tag
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: Containerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}