1
0
mirror of https://github.com/rancher/os.git synced 2025-08-19 07:19:05 +00:00
os/scripts/release-amd64

21 lines
535 B
Plaintext
Raw Normal View History

2018-12-05 04:03:04 +00:00
#!/bin/bash
set -ex
cd $(dirname $0)/..
source ./scripts/version
./scripts/release-build
echo "github-release release --user burmilla --repo os --tag ${VERSION} --pre-release --draft" > dist/publish.sh
2018-12-05 04:03:04 +00:00
chmod 755 dist/publish.sh
echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/burmillaos.iso --name burmillaos-${VERSION}.iso" >> dist/publish.sh
2018-12-05 04:03:04 +00:00
echo >> dist/publish.sh
cat dist/images | sed 's/^/docker push /' >> dist/publish.sh
echo "--- Run dist/publish.sh"
cat dist/publish.sh