mirror of
https://github.com/rancher/os.git
synced 2025-08-17 14:28:16 +00:00
- Use burmilla GitHub repos - Release under burmilla Docker Hub - GitHub action for create releases - Updated boot image and login banner - Use Debian as default console - Updated system-cron to v0.5.0 - Updated services to latest versions - Bump up kernel to 4.14.206 - Include burmilla/os-debianconsole:v1.9.0 to initrd
24 lines
661 B
Bash
Executable File
24 lines
661 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
source ./scripts/version
|
|
|
|
if [ ! -f ./dist/artifacts/rootfs_arm64.tar.gz ]; then
|
|
echo "Please run make first"
|
|
exit 0
|
|
fi
|
|
|
|
cp ./dist/artifacts/rootfs_arm64.tar.gz ./scripts/images/raspberry-pi-hypriot64/
|
|
pushd ./scripts/images/raspberry-pi-hypriot64/
|
|
./../../../.dapper
|
|
popd
|
|
|
|
cp ./scripts/images/raspberry-pi-hypriot64/dist/burmillaos-raspberry-pi64.zip ./dist/artifacts/
|
|
|
|
touch dist/publish.sh
|
|
chmod 755 dist/publish.sh
|
|
|
|
echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file dist/artifacts/burmillaos-raspberry-pi64.zip --name burmillaos-${VERSION}-raspberry-pi64.zip" >> dist/publish.sh
|