Skip to content

Commit

Permalink
move pnpm flags before actual command
Browse files Browse the repository at this point in the history
This way the flags are passed to `pnpm` itself instead of the underlying
command.
  • Loading branch information
RobinMalfait committed Aug 9, 2024
1 parent b3b03a7 commit 7628037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
run: pnpm install --ignore-scripts --filter=!./playgrounds/*

- name: Build release
run: pnpm run build --filter ${{ env.OXIDE_LOCATION }}
run: pnpm --filter ${{ env.OXIDE_LOCATION }} run build
env:
RUST_TARGET: ${{ matrix.target }}
JEMALLOC_SYS_WITH_LG_PAGE: ${{ matrix.page-size }}
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
key: ${{ runner.os }}-${{ matrix.target }}-oxide-${{ hashFiles('./crates/**/*') }}

- name: Install dependencies
run: pnpm install --ignore-scripts --filter=!./playgrounds/*
run: pnpm --ignore-scripts --filter=!./playgrounds/* install

- name: Build Tailwind CSS
run: pnpm run build
Expand Down

0 comments on commit 7628037

Please sign in to comment.