mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-06-18 15:57:29 +02:00
Update CI.yml
This commit is contained in:
parent
5399507f16
commit
2b8d31844e
19
.github/workflows/CI.yml
vendored
19
.github/workflows/CI.yml
vendored
@ -25,6 +25,7 @@ jobs:
|
||||
env:
|
||||
LATEST_BRANCH: "${{ github.event.repository.master_branch }}"
|
||||
DOCKER_REPOSITORY: "zabbix"
|
||||
PUSH_IMAGES: "false"
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@ -108,7 +109,7 @@ jobs:
|
||||
GIT_BRANCH="${{ github.ref }}"
|
||||
GIT_BRANCH=${GIT_BRANCH:11}
|
||||
|
||||
echo "::warning Branch - ${GIT_BRANCH}"
|
||||
echo "::debug::Branch - ${GIT_BRANCH}"
|
||||
|
||||
if [ "${GIT_BRANCH}" == "trunk" ]; then
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:${{ matrix.os }}-${GIT_BRANCH}")
|
||||
@ -126,7 +127,7 @@ jobs:
|
||||
|
||||
TAGS=$(printf -- "--tag %s " "${TAGS_ARRAY[@]}")
|
||||
|
||||
echo "::warning Tags - ${TAGS}"
|
||||
echo "::debug::Tags - ${TAGS}"
|
||||
|
||||
echo ::set-output name=image_name::${IMAGE_NAME}
|
||||
echo ::set-output name=image_tag_versions::$(printf -- "|%s" "${TAGS_ARRAY[@]}")
|
||||
@ -147,7 +148,7 @@ jobs:
|
||||
RELEASE_VERSION=${RELEASE_VERSION:10}
|
||||
GIT_BRANCH=${RELEASE_VERSION%.*}
|
||||
|
||||
echo "::warning Release version ${RELEASE_VERSION}. Branch ${GIT_BRANCH}"
|
||||
echo "::debug::Release version ${RELEASE_VERSION}. Branch ${GIT_BRANCH}"
|
||||
|
||||
TAGS_ARRAY+=("$IMAGE_NAME:${{ matrix.os }}-${RELEASE_VERSION}")
|
||||
|
||||
@ -196,22 +197,24 @@ jobs:
|
||||
elif [ ! -z "${{ steps.prepare_release.outputs.buildx_args }}" ]; then
|
||||
BUILDX_ARGS="${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
fi
|
||||
|
||||
echo "::debug::push built images - ${{ env.PUSH_IMAGES }}"
|
||||
|
||||
docker buildx build --cache-from "type=local,src=/tmp/.buildx-cache" \
|
||||
--output "type=image,push=true" \
|
||||
--output "type=image,push=false" \
|
||||
${BUILDX_ARGS}
|
||||
|
||||
- name: Inspect images
|
||||
run: |
|
||||
echo "::warning push - ${{ steps.prepare_push.outputs.buildx_args }}"
|
||||
echo "::warning release - ${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
echo "::debug::push - ${{ steps.prepare_push.outputs.buildx_args }}"
|
||||
echo "::debug::release - ${{ steps.prepare_release.outputs.buildx_args }}"
|
||||
|
||||
if [ ! -z "${{ steps.prepare_push.outputs.image_tag_versions }}" ]; then
|
||||
IMAGE_TAG_VERSIONS="${{ steps.prepare_push.outputs.image_tag_versions }}"
|
||||
echo "::warning tags push raw - $IMAGE_TAG_VERSIONS"
|
||||
echo "::debug::tags push raw - $IMAGE_TAG_VERSIONS"
|
||||
elif [ ! -z "${{ steps.prepare_release.outputs.image_tag_versions }}" ]; then
|
||||
IMAGE_TAG_VERSIONS="${{ steps.prepare_release.outputs.image_tag_versions }}"
|
||||
echo "::warning tags release raw - $IMAGE_TAG_VERSIONS"
|
||||
echo "::debug::tags release raw - $IMAGE_TAG_VERSIONS"
|
||||
fi
|
||||
|
||||
IMAGE_TAG_VERSIONS=${IMAGE_TAG_VERSIONS%%+(|)}
|
||||
|
Loading…
x
Reference in New Issue
Block a user