2019-12-27 11:07:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
|
2020-03-09 01:32:07 +00:00
|
|
|
for BUILD_ARCH in amd64 arm32v7 arm64v8; do
|
|
|
|
cat << EOF
|
|
|
|
- label: ":docker: Deploy Image [${BUILD_ARCH}]"
|
|
|
|
command: "authelia-scripts docker push-image --arch=${BUILD_ARCH}"
|
|
|
|
agents:
|
|
|
|
upload: "fast"
|
|
|
|
env:
|
|
|
|
ARCH: "${BUILD_ARCH}"
|
|
|
|
EOF
|
2019-12-27 11:07:53 +00:00
|
|
|
done
|