Initial commit: Port Amador landing site with Docker deployment setup

This commit is contained in:
2025-09-22 14:23:01 +02:00
parent c40315e86c
commit 05c3fe71a7
26 changed files with 1611 additions and 124 deletions

View File

@@ -0,0 +1,26 @@
name: Build And Push Image
on: [push]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Login To Registry
uses: docker/login-action@v3
with:
registry: ${{ vars.REGISTRY_HOST }}
username: ${{ vars.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Set Up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build And Push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64
push: true
tags: |
${{ vars.REGISTRY_HOST }}/${{ vars.REGISTRY_USERNAME }}/${{ vars.IMAGE_NAME }}:latest
${{ vars.REGISTRY_HOST }}/${{ vars.REGISTRY_USERNAME }}/${{ vars.IMAGE_NAME }}:${{ github.sha }}