feat(umami): setup
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m9s

This commit is contained in:
2026-02-27 19:40:15 +01:00
parent e87f19e7ce
commit 49ffa07af3
5 changed files with 51 additions and 13 deletions

View File

@@ -23,7 +23,15 @@ jobs:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Debug secrets
run: |
echo "UMAMI_HOST (first 10): $(echo '${{ secrets.UMAMI_HOST }}' | cut -c1-10)"
echo "UMAMI_ID (first 8): $(echo '${{ secrets.UMAMI_ID }}' | cut -c1-8)"
- name: Build and push Docker image
run: |
docker build -t git.pihkaal.me/pihkaal/simple-qr:latest .
docker build \
--build-arg UMAMI_HOST=${{ secrets.UMAMI_HOST }} \
--build-arg UMAMI_ID=${{ secrets.UMAMI_ID }} \
-t git.pihkaal.me/pihkaal/simple-qr:latest .
docker push git.pihkaal.me/pihkaal/simple-qr:latest