Skip to content

Commit

Permalink
chore: avoid building frontend twice (#3918)
Browse files Browse the repository at this point in the history
## About the changes
Running `yarn install` without the `dist` folder will trigger a `yarn
build` automatically as part of the `prepare script`

As we can see here:
https://github.com/Unleash/unleash/actions/runs/5200272004/jobs/9378770279
```
[build:frontend] ✓ built in 41.10s
// more output
[build:frontend] ✓ built in 39.81s
```
  • Loading branch information
gastonfournier committed Jun 8, 2023
1 parent 3d34450 commit 51fc8f0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/release.yaml
Expand Up @@ -23,7 +23,6 @@ jobs:
- name: Build
run: |
yarn install --frozen-lockfile
yarn build
- name: Publish to npm
run: |
LATEST=$(npm show unleash-server version)
Expand Down

0 comments on commit 51fc8f0

Please sign in to comment.