mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-05-18 07:00:45 +02:00
Merge pull request #1209 from zabbix/trunk_workflow
Updated building images workflow
This commit is contained in:
commit
24f344b596
15
.github/workflows/images_build.yml
vendored
15
.github/workflows/images_build.yml
vendored
@ -391,7 +391,10 @@ jobs:
|
|||||||
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
TAGS: ${{ steps.meta.outputs.tags }}
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
run: |
|
run: |
|
||||||
images=$(printf "%s@${DIGEST}" "${TAGS[@]}")
|
images=""
|
||||||
|
for tag in ${TAGS}; do
|
||||||
|
images+="${tag}@${DIGEST} "
|
||||||
|
done
|
||||||
|
|
||||||
echo "::group::Images to sign"
|
echo "::group::Images to sign"
|
||||||
echo "$images"
|
echo "$images"
|
||||||
@ -637,7 +640,10 @@ jobs:
|
|||||||
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
TAGS: ${{ steps.meta.outputs.tags }}
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
run: |
|
run: |
|
||||||
images=$(printf "%s@${DIGEST}" "${TAGS[@]}")
|
images=""
|
||||||
|
for tag in ${TAGS}; do
|
||||||
|
images+="${tag}@${DIGEST} "
|
||||||
|
done
|
||||||
|
|
||||||
echo "::group::Images to sign"
|
echo "::group::Images to sign"
|
||||||
echo "$images"
|
echo "$images"
|
||||||
@ -984,7 +990,10 @@ jobs:
|
|||||||
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
DIGEST: ${{ steps.docker_build.outputs.digest }}
|
||||||
TAGS: ${{ steps.meta.outputs.tags }}
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
run: |
|
run: |
|
||||||
images=$(printf "%s@${DIGEST}" "${TAGS[@]}")
|
images=""
|
||||||
|
for tag in ${TAGS}; do
|
||||||
|
images+="${tag}@${DIGEST} "
|
||||||
|
done
|
||||||
|
|
||||||
echo "::group::Images to sign"
|
echo "::group::Images to sign"
|
||||||
echo "$images"
|
echo "$images"
|
||||||
|
Loading…
Reference in New Issue
Block a user