mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
2fb20882d9
Publish steps are currently disabled.
13 lines
335 B
Bash
Executable File
13 lines
335 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
for BUILD_ARCH in amd64 arm32v7 arm64v8;
|
|
do
|
|
echo " - commands:"
|
|
echo " - \"authelia-scripts docker push-image --arch=${BUILD_ARCH}\""
|
|
echo " label: \":docker: Deploy Image [${BUILD_ARCH}]\""
|
|
echo " agents:"
|
|
echo " "upload: fast""
|
|
echo " env:"
|
|
echo " "ARCH: ${BUILD_ARCH}""
|
|
done |