Update .gitlab-ci.yml
This commit is contained in:
parent
f80285f36d
commit
1d1ef2a31d
@ -4,10 +4,14 @@ stages:
|
||||
variables:
|
||||
IMAGE_NAME: thallian/alpine-s6
|
||||
CI_BUILD_ARCHS: "linux/amd64,linux/arm64"
|
||||
DOWNSTREAM_PROJECTS: "11 12 14 15 17 18"
|
||||
|
||||
build:
|
||||
stage: build
|
||||
script:
|
||||
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD $DOCKER_REGISTRY
|
||||
- docker buildx build --platform "$CI_BUILD_ARCHS" --progress plain --pull --tag "$IMAGE_NAME:$CI_COMMIT_SHA" --tag "$IMAGE_NAME:$CI_COMMIT_REF_NAME" --tag "$IMAGE_NAME:latest" --push .
|
||||
- curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=master $CI_API_V4_URL/projects/18/trigger/pipeline
|
||||
- |
|
||||
for proj in $DOWNSTREAM_PROJECTS; do
|
||||
curl --request POST --form "token=$CI_JOB_TOKEN" --form ref=master $CI_API_V4_URL/projects/$proj/trigger/pipeline
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user