Consolidate Docker, Nginx, and deploy configs from 5 scattered directories (docker/, deploy/docker/, deploy/nginx/, script/) into a single infra/ tree with dev/ and prod/ subdirectories. Update all references in docker-compose, Makefile, CI workflows, Dockerfiles, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
809 B
YAML
31 lines
809 B
YAML
name: Build & Push Docker Image
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to Gitea Registry
|
|
run: |
|
|
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.malio.fr -u "${{ gitea.repository_owner }}" --password-stdin
|
|
|
|
- name: Build Docker image
|
|
run: |
|
|
docker build \
|
|
-f infra/prod/Dockerfile \
|
|
-t gitea.malio.fr/malio-dev/lesstime:${{ gitea.ref_name }} \
|
|
-t gitea.malio.fr/malio-dev/lesstime:latest \
|
|
.
|
|
|
|
- name: Push Docker image
|
|
run: |
|
|
docker push gitea.malio.fr/malio-dev/lesstime:${{ gitea.ref_name }}
|
|
docker push gitea.malio.fr/malio-dev/lesstime:latest
|