support for multiple versions
All checks were successful
Build / build (push) Successful in 30m29s

This commit is contained in:
Lukáš Plevač 2024-10-27 09:27:10 +01:00
parent 4d8fafebe0
commit 02d73fb946
5 changed files with 23 additions and 2 deletions

0
airootfs/root/.gitkeep Normal file
View File

View File

@ -1 +1,22 @@
mkarchiso -v -o ${PWD}/out ${PWD}
#remove old files
rm -rf ./work
rm -rf ./out
for f in ./versions/*; do
if [ -d "$f" ]; then
# clean before build
rm -rf ./airootfs/root/*
rm -f ./profiledef.sh
# copy version files
cp "$f/profiledef.sh" .
cp -r "%f/airootfs/*" ./airootfs/root/
# build it
mkarchiso -v -o ${PWD}/out ${PWD}
fi
done
# clean after build
rm -rf ./airootfs/root/*
rm -f ./profiledef.sh

View File

@ -2,7 +2,7 @@
# shellcheck disable=SC2034
iso_name="SaturnArch"
iso_label="SATURNARCH_$(date +%Y%m)"
iso_label="SATURNARCH_LITE"
iso_publisher="Lukas Plevac <lukas@plevac.eu>"
iso_application="SaturnArch Linux"
iso_version="$(date +%Y.%m.%d)"