docs: Correct circleci workflow (#2365)

This commit is contained in:
hong-jen kao 2022-02-18 04:12:26 +08:00 committed by GitHub
parent 2c30e268f9
commit b4bc1918cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,14 +22,12 @@ Finally, we call our release job with a `requires` parameter so that `release` w
```yaml ```yaml
version: 2.1 version: 2.1
orbs: orbs:
node: circleci/node@4.5 node: circleci/node@5.0.0
jobs: jobs:
release: release:
executor: node/default executor: node/default
steps: steps:
- checkout - checkout
- node/install
lts: true
- node/install-packages # Install and automatically cache packages - node/install-packages # Install and automatically cache packages
# Run optional required steps before releasing # Run optional required steps before releasing
# - run: npm run build-script # - run: npm run build-script