Fix name.

This commit is contained in:
Michael Lipp 2024-06-18 10:55:53 +02:00
parent cf8c36b9d0
commit c21da4f62b

18
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,18 @@
image: quay.io/podman/stable
stages:
- build
- push
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
before_script:
- echo -n $CI_REGISTRY_PASSWORD | podman login -u "$CI_REGISTRY_USER" $CI_REGISTRY
build:
stage: build
script:
- podman build -t $IMAGE_TAG .
- podman push $IMAGE_TAG
when: manual