mirror of
https://github.com/rancher/os.git
synced 2025-06-19 19:51:55 +00:00
26 lines
957 B
Plaintext
26 lines
957 B
Plaintext
|
#!/bin/bash
|
||
|
set -ex
|
||
|
|
||
|
cd $(dirname $0)/..
|
||
|
|
||
|
touch .make-azure
|
||
|
|
||
|
source ./scripts/version
|
||
|
./scripts/release-build
|
||
|
|
||
|
touch dist/publish_gss_${VERSION}.sh dist/publish_gss_latest.sh
|
||
|
chmod 755 dist/publish_gss_${VERSION}.sh dist/publish_gss_latest.sh
|
||
|
|
||
|
for file in $(ls dist/artifacts/); do
|
||
|
case $file in
|
||
|
"initrd-"*)
|
||
|
echo "gsutil cp dist/artifacts/${file} gs://releases.rancher.com/os/latest/azure/initrd" >> ./dist/publish_gss_latest.sh
|
||
|
echo "gsutil cp dist/artifacts/${file} gs://releases.rancher.com/os/${VERSION}/azure/initrd" >> ./dist/publish_gss_${VERSION}.sh
|
||
|
;;
|
||
|
"rancheros.iso" | "rootfs.tar.gz")
|
||
|
echo "gsutil cp dist/artifacts/${file} gs://releases.rancher.com/os/latest/azure/${file}" >> ./dist/publish_gss_latest.sh
|
||
|
echo "gsutil cp dist/artifacts/${file} gs://releases.rancher.com/os/${VERSION}/azure/${file}" >> ./dist/publish_gss_${VERSION}.sh
|
||
|
;;
|
||
|
esac
|
||
|
done
|