Github action support #2

Merged
david merged 10 commits from actions into main 2025-04-03 19:44:25 -07:00
2 changed files with 14 additions and 11 deletions
Showing only changes of commit 9df235f379 - Show all commits

13
dev.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
sassc css/style.scss css/style.css
python3 -m http.server 8080 &
# Keypress loop
while true; do
read -n 1 -s key
if [[ $key == "r" ]]; then
echo -e "\nRecompiling SCSS..."
sassc css/style.scss css/style.css && echo "Done."
fi
done

View File

@ -1,13 +1,3 @@
#!/bin/bash
sassc css/style.scss css/style.css
python3 -m http.server 8080 &
# Keypress loop
while true; do
read -n 1 -s key
if [[ $key == "r" ]]; then
echo -e "\nRecompiling SCSS..."
sassc css/style.scss css/style.css && echo "Done."
fi
done
python3 -m http.server 8080