docker-devops-helper/.gitea/workflows/dev.yaml
Roger Sikorski fdcacde07c
Some checks failed
/ build (push) Failing after 6s
build_file argument added
2023-07-23 19:36:34 +02:00

24 lines
619 B
YAML

on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: docker
container:
image: alpine:latest
steps:
- run: apk --no-cache add nodejs git
- uses: actions/checkout@v3
- name: Kaniko build
uses: aevea/action-kaniko@master
with:
registry: gitea.sikorski.cloud
image: rogersik/docker-admin-helper
tag: development
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
cache: true
cache_registry: rogersik/docker-admin-helper
build_file: Dockerfile