1
0
mirror of https://github.com/rancher/os.git synced 2025-09-18 08:06:48 +00:00

Automatically publish iPXE files (#81)

This commit is contained in:
Olli Janatuinen
2021-04-12 19:38:06 +03:00
committed by GitHub
parent 91271efc14
commit fe5bdc0f4c

View File

@@ -17,6 +17,11 @@ else
echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/burmillaos.iso --name burmillaos-${VERSION}.iso" >> dist/publish.sh
# Include iPXE files
echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/initrd-${VERSION} --name initrd" >> dist/publish.sh
echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/vmlinuz-${KERNEL_VERSION} --name vmlinuz" >> dist/publish.sh
echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/rootfs.tar.gz --name rootfs.tar.gz" >> dist/publish.sh
cat dist/images | sed 's/^/docker push /' >> dist/publish.sh
fi