umami-custom/.forgejo/workflows/umami.yml
watson a44904efb2
Some checks failed
Build custom umami / Build (push) Failing after 3m53s
Update .forgejo/workflows/umami.yml
2025-08-24 15:48:28 +02:00

36 lines
758 B
YAML

name: Build custom umami
on:
push:
branches: [main]
jobs:
Build:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
repository: 'https://github.com/umami-software/umami'
- name: Login to image registry
uses: docker/login-action@master
with:
registry: git.octubre.be
username: ${{ github.repository_owner }}
password: ${{ secrets.LOGIN_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@master
with:
context: .
file: Dockerfile
push: true
tags: 'latest'
buildArgs: |
DATABASE_TYPE=postgresql
BASE_PATH=/stats