mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-08 05:26:58 +02:00
From flatcar-3033 on, arm64 images are available for Stable channel, we need to also add arm64 to Stable boards.
22 lines
584 B
Bash
Executable File
22 lines
584 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
case "${CHANNEL}" in
|
|
*)
|
|
boards=( amd64-usr arm64-usr )
|
|
;;
|
|
esac
|
|
|
|
for board in "${boards[@]}"
|
|
do
|
|
bin/plume release \
|
|
--debug \
|
|
--aws-credentials="${AWS_CREDENTIALS}" \
|
|
--azure-profile="${AZURE_CREDENTIALS}" \
|
|
--azure-auth="${AZURE_AUTH_CREDENTIALS}" \
|
|
--gce-json-key="${GOOGLE_APPLICATION_CREDENTIALS}" \
|
|
--gce-release-key="${GOOGLE_RELEASE_CREDENTIALS}" \
|
|
--board="${board}" \
|
|
--channel="${CHANNEL}" \
|
|
--version="${VERSION}"
|
|
done
|