1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

chore: avoid building frontend twice (#3918)

## 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
```
This commit is contained in:
Gastón Fournier 2023-06-08 10:48:28 +02:00 committed by GitHub
parent 3d344509a8
commit 51fc8f0550
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)