@dreamworld/dw-list-item
Version:
A material design item used to show single item of the list [More detail](https://material.io/components/lists/#)
42 lines (40 loc) • 981 B
YAML
version: 2
jobs:
release-snapshot:
docker:
- image: circleci/node:lts
steps:
- checkout
- run: yarn install --frozen-lockfile --non-ineractive
- run:
name: Deploy
command: |
export NPM_TOKEN=${SNAPSHOT_NPM_TOKEN}
npm config set ${NPM_PACKAGE_SCOPE}:registry ${NPM_SNAPSHOT_REPO}
npx semantic-release
release:
docker:
- image: circleci/node:lts
steps:
- checkout
- run: yarn install --frozen-lockfile --non-ineractive
- run: echo "Running release job"
- run:
name: Deploy
command: npx semantic-release
workflows:
version: 2
release:
jobs:
- release-snapshot:
context: Dreamworld
filters:
branches:
only:
- /^feature\/.+$/
- release:
context: Dreamworld
filters:
branches:
only:
- master