Skip to content
Commits on Source (8)
build:
stage: build
include:
- project: "dudelab/pipelines"
file: "semantic-versioning/default.yml"
stages:
- .pre
- release
- build-push
build-push:
stage: build-push
image:
name: gcr.io/kaniko-project/executor:v1.23.2-debug
entrypoint: [""]
dependencies:
- semantic-release-version-calculation
script:
- if [ -z "${VERSION}" ]; then exit 0; fi
- /kaniko/executor
--context "${CI_PROJECT_DIR}"
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
--destination "${CI_REGISTRY_IMAGE}:${CI_COMMIT_TAG}"
--destination "${CI_REGISTRY_IMAGE}:${VERSION}"
rules:
- if: $CI_COMMIT_TAG
- if: "$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH"
## [1.0.1](https://dudelab.dev/docker/ansible-tofu/compare/1.0.0...1.0.1) (2024-12-11)
### Bug Fixes
* Update alpine Docker tag to v3.21.0 ([dc879a0](https://dudelab.dev/docker/ansible-tofu/commit/dc879a00fa99a7af160cbb9e5cbb4caaf0663281))
FROM alpine:3.20.3
FROM alpine:3.21.0
RUN apk add curl ansible opentofu openssh-client
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"commitMessagePrefix": "fix: "
}