Files
SixFlagsSuperCalendar/.gitea/workflows/deploy.yml
T
josh 8027bfc5cf
Build and Deploy / Build & Push (push) Successful in 1m39s
rename project from SixFlagsSuperCalendar to Thoosie Calendar
Update package names, Docker image tags, CI/CD workflow, and
documentation to reflect the public brand name. References to
the actual Six Flags theme park chain/API are intentionally kept.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-24 10:06:17 -04:00

37 lines
906 B
YAML

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-push:
name: Build & Push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to Gitea registry
uses: docker/login-action@v3
with:
registry: ${{ vars.REGISTRY }}
username: ${{ gitea.actor }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push web image
uses: docker/build-push-action@v6
with:
context: .
target: web
push: true
tags: ${{ vars.REGISTRY }}/${{ gitea.repository_owner }}/thoosiecalendar:web
- name: Build and push backend image
uses: docker/build-push-action@v6
with:
context: .
target: backend
push: true
tags: ${{ vars.REGISTRY }}/${{ gitea.repository_owner }}/thoosiecalendar:backend