first commit
All checks were successful
Docker Build and Push for Main Branch / docker (push) Successful in 38m45s

This commit is contained in:
l-nmch
2026-03-20 23:35:16 +01:00
commit 30a8bd8e2d
49 changed files with 5470 additions and 0 deletions

36
.gitea/workflows/dev.yml Normal file
View File

@@ -0,0 +1,36 @@
name: Docker Build and Push for Main Branch
on:
push:
paths-ignore:
- ".gitignore"
- "README.md"
- "LICENSE"
branches:
- dev
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
registry: git.phorge.fr
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: false
tags: git.phorge.fr/retake/retake.fr:latest

36
.gitea/workflows/main.yml Normal file
View File

@@ -0,0 +1,36 @@
name: Docker Build and Push for Main Branch
on:
push:
paths-ignore:
- ".gitignore"
- "README.md"
- "LICENSE"
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
registry: git.phorge.fr
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: git.phorge.fr/retake/retake.fr:latest