Skip to content

Commit

Permalink
ci: update build scripts to use production build
Browse files Browse the repository at this point in the history
Switch from using `yarn run build` to `yarn run build:prod`
in both release and test workflows to ensure production
builds are consistently used, improving performance
and reliability in deployment and testing processes.
  • Loading branch information
A-F-V authored and gitbutler-client committed Oct 15, 2024
1 parent b7c739d commit 3d088d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: build
run: |
yarn
yarn run build
yarn run build:prod
# Package the required files into a zip
- name: Package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
run: yarn run lint

- name: Run Build
run: yarn run build
run: yarn run build:prod

0 comments on commit 3d088d7

Please sign in to comment.