push
Some checks failed
docker build with git tag / build (push) Failing after 34s

This commit is contained in:
Roger Sikorski 2024-12-27 13:25:31 +01:00
parent f9ae91806c
commit 5b6029f88f
2 changed files with 14 additions and 11 deletions

View File

@ -4,20 +4,20 @@ name: docker build with git tag
on: on:
push: push:
tags: tags:
- '[0-9]+.[0-9]+.[0-9]+' - "[0-9]+.[0-9]+.[0-9]+"
jobs: jobs:
dockerfile_lint: # dockerfile_lint:
runs-on: ubuntu-22.04 # runs-on: ubuntu-22.04
steps: # steps:
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
# https://github.com/hadolint/hadolint-action/releases # # https://github.com/hadolint/hadolint-action/releases
- uses: hadolint/hadolint-action@v3.1.0 # - uses: hadolint/hadolint-action@v3.1.0
with: # with:
dockerfile: Dockerfile/base # dockerfile: Dockerfile/base
build: build:
needs: dockerfile_lint # needs: dockerfile_lint
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -32,7 +32,7 @@ jobs:
# build options # build options
build_file: Dockerfile build_file: Dockerfile
tag: '${{ env.TAG }}' tag: "${{ env.TAG }}"
build_args: | build_args: |
GIT_TAG=${{ env.TAG }} GIT_TAG=${{ env.TAG }}
tag_with_latest: true tag_with_latest: true

3
.hadolint.yaml Normal file
View File

@ -0,0 +1,3 @@
ignored:
- DL3008 # no need to pin versions
- DL3018 # no need to pin versions