Skip to content

feat(Icon): Add Car icon to the spectrum icons list. (#343) #125

feat(Icon): Add Car icon to the spectrum icons list. (#343)

feat(Icon): Add Car icon to the spectrum icons list. (#343) #125

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Build playground
run: npm run playground
- name: Build documentation
run: npm run docs
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
run: npm run semantic-release
- name: Publish documentation to github pages
uses: JamesIves/github-pages-deploy-action@v4.2.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: dist