From 465b2e24998d90b8163baf730ddfeae4c103e790 Mon Sep 17 00:00:00 2001 From: Kevin Zheng Date: Fri, 16 Feb 2024 01:58:56 +1100 Subject: [PATCH] Edit release.yml --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9cbeb11..afcdfb92 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,13 +26,13 @@ jobs: cd client && npm run build && npm run package - name: Build Adapter FS Bridge run: | - cd adapter-fs-bridge && npm run build && zip -r dist.zip dist + cd adapter-fs-bridge && npm i && npm run build && zip -r dist.zip dist - name: Build Adapter Iron Harvest run: | - cd adapter-iron-harvest && npm run build && zip -r dist.zip dist + cd adapter-iron-harvest && npm i && npm run build && zip -r dist.zip dist - name: Build Adapter Warthog Websocket run: | - cd adapter-warthog-websocket && npm run build && zip -r dist.zip dist + cd adapter-warthog-websocket && npm i && npm run build && zip -r dist.zip dist - name: Deploy uses: actions/create-release@v1 id: create_release