Add gitea ci workflow
Build and Deploy / deploy (push) Failing after 37m6s

This commit is contained in:
2026-06-04 18:14:53 +02:00
parent a32bfd5108
commit 3f35c670ca
2 changed files with 46 additions and 5 deletions
+21
View File
@@ -0,0 +1,21 @@
name: Build and Deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: nix-ci
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build docker
run: nix run nixpkgs#devenv shell build-docker
- name: Deploy docker
env:
REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_GITEA_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_GITEA_PASSWORD }}
run: nix run nixpkgs#devenv shell deploy-docker