fix(ci): install deps in release job before launcher build

This commit is contained in:
2026-02-23 02:23:50 -08:00
parent 0d63db5f27
commit fe8a71990a

View File

@@ -216,6 +216,19 @@ jobs:
with: with:
bun-version: 1.3.5 bun-version: 1.3.5
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.bun/install/cache
node_modules
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build Bun subminer wrapper - name: Build Bun subminer wrapper
run: make build-launcher run: make build-launcher