Skip to content
Open

fix: ci #2339

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}

- name: yarn install
run: yarn install --frozen-lockfile --silent
run: yarn install --frozen-lockfile --silent --ignore-engines

- name: build api server
# I want to do --parallel here, but the binary downloads conflict with each other
run: |
echo RELEASE_PATH="${GITHUB_WORKSPACE}/releases" >> "${GITHUB_ENV}"
yarn run esbuild
cd packages/api && yarn run esbuild

- name: Rename and move built binaries
run: |
Expand Down
Loading