From 5905279881683429782dfe57652c4787b46f4b72 Mon Sep 17 00:00:00 2001 From: Djuri Baars Date: Sun, 19 Nov 2023 15:18:37 +0100 Subject: [PATCH] Explicitly run postinstall in workflow --- .github/workflows/workflow.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 2374b5b..e3f9211 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -39,7 +39,7 @@ jobs: git submodule update --init && make dist - name: Install yarn - run: yarn + run: yarn && yarn postinstall - name: Build WebUI run: yarn build - name: gzip build for LittleFS @@ -57,6 +57,8 @@ jobs: - name: Create release uses: ncipollo/release-action@v1 with: + tag: main + commit: main name: release-${{ steps.date.outputs.dateAndTime }} artifacts: "littlefs.bin,webui.tgz" allowUpdates: true