Files
docker-monica/.gitea/workflows/dev.yaml
Roger Sikorski 0f51841fdc
All checks were successful
docker-monica-build mr / Dockerfile lint (push) Successful in 11s
docker-monica-build mr / build (push) Successful in 2m15s
actions/checkout@v3 upgraded to v4
2023-11-29 20:35:40 +01:00

31 lines
643 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: development
cache: true
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}