mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b70c4a744f
* [Buildkite] Ignore build and deploy steps for [DOCS] only based commits * [Buildkite] Convert static pipelines into dynamic pipelines * [Buildkite] Convert dynamic pipeline steps into heredocs * [Buildkite] Fix indentation for aurpackages.sh * [Buildkite] Rename docs bypass env variable * [Buildkite] Fix automatic retries in integration tests
13 lines
276 B
Bash
Executable File
13 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
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
|
|
done |