From 3f7384320f15c00c05912ce9d934fa59a5d9b27e Mon Sep 17 00:00:00 2001 From: Djuri Baars Date: Tue, 3 Sep 2024 12:37:35 +0200 Subject: [PATCH] Remove icons to save space in image --- .github/workflows/workflow.yml | 4 +++- {static => extra}/icons/flash.svg | 0 {static => extra}/icons/lightning-bolt.svg | 0 {static => extra}/icons/pickaxe.svg | 0 {static => extra}/icons/rocket.svg | 0 5 files changed, 3 insertions(+), 1 deletion(-) rename {static => extra}/icons/flash.svg (100%) rename {static => extra}/icons/lightning-bolt.svg (100%) rename {static => extra}/icons/pickaxe.svg (100%) rename {static => extra}/icons/rocket.svg (100%) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index f6aad5d..310777b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -100,7 +100,9 @@ jobs: - name: Create tarball run: tar czf webui.tgz --strip-components=1 dist - name: Build LittleFS - run: /tmp/mklittlefs/mklittlefs -c build_gz -s 409600 output/littlefs.bin + run: | + set -e + /tmp/mklittlefs/mklittlefs -c build_gz -s 409600 output/littlefs.bin - name: Upload artifacts uses: actions/upload-artifact@v4 with: diff --git a/static/icons/flash.svg b/extra/icons/flash.svg similarity index 100% rename from static/icons/flash.svg rename to extra/icons/flash.svg diff --git a/static/icons/lightning-bolt.svg b/extra/icons/lightning-bolt.svg similarity index 100% rename from static/icons/lightning-bolt.svg rename to extra/icons/lightning-bolt.svg diff --git a/static/icons/pickaxe.svg b/extra/icons/pickaxe.svg similarity index 100% rename from static/icons/pickaxe.svg rename to extra/icons/pickaxe.svg diff --git a/static/icons/rocket.svg b/extra/icons/rocket.svg similarity index 100% rename from static/icons/rocket.svg rename to extra/icons/rocket.svg