Files
docker-monica/.gitea/workflows/dev.yaml
Roger Sikorski 4bf23838f0
Some checks failed
docker-monica-build main / dockerfile_lint (push) Has been cancelled
docker-monica-build main / build (push) Has been cancelled
feature/docker-update (#6)
Reviewed-on: #6
2024-05-11 13:45:11 +02:00

31 lines
641 B
YAML

name: docker-monica-build mr
on:
push:
branches-ignore:
- main
jobs:
dockerfile_lint:
runs-on: k3s
steps:
- uses: actions/checkout@v4
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile
build:
needs: dockerfile_lint
runs-on: k3s
steps:
- uses: actions/checkout@v4
- name: Kaniko build
uses: aevea/action-kaniko@master
with:
image: rogersik/monica
registry: gitea.sikorski.cloud
tag: '4.1-dev'
cache: true
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}