mgirate to gitea runner
Some checks failed
docker build with git tag / dockerfile_lint (push) Failing after 41s
docker build with git tag / build (push) Has been skipped

This commit is contained in:
2024-12-27 13:22:25 +01:00
parent 3c209b9447
commit f9ae91806c
2 changed files with 39 additions and 95 deletions

View File

@ -0,0 +1,39 @@
---
name: docker build with git tag
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
dockerfile_lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
# https://github.com/hadolint/hadolint-action/releases
- uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: Dockerfile/base
build:
needs: dockerfile_lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Kaniko build
# https://github.com/aevea/action-kaniko/releases
uses: aevea/action-kaniko@v0.14.0
with:
# repo setup
image: ${{ github.repository }}
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}
# build options
build_file: Dockerfile
tag: '${{ env.TAG }}'
build_args: |
GIT_TAG=${{ env.TAG }}
tag_with_latest: true
cache: true