First commit

This commit is contained in:
l-nmch
2024-12-18 22:52:39 +01:00
commit be09bfe042
46 changed files with 5378 additions and 0 deletions

23
.github/workflows/dev.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Docker Build for Dev Branch
on:
push:
branches:
- dev
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- 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,linux/arm64
push: false
tags: website:dev

0
.github/workflows/main.yml vendored Normal file
View File