feat: added icons: task, add task and small view. added more keywords… #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- production | |
- alpha | |
- beta | |
- staging | |
- next | |
- legacy | |
paths: | |
- 'packages/dialtone/**' | |
- 'packages/dialtone-tokens/**' | |
- 'apps/dialtone-documentation/**' | |
env: | |
HUSKY: 0 | |
jobs: | |
deploy: | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18 ] | |
defaults: | |
run: | |
working-directory: ${{ github.workspace }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v7 | |
# Will prevent the rest of the steps from running on fail | |
- name: Check if user is a dialpad member | |
uses: octokit/request-action@v2.1.0 | |
with: | |
route: GET /orgs/dialpad/members/${{ github.actor }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.DIALTONE_CI_TOKEN }} | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build library and docsite (${{ steps.branch-name.outputs.current_branch }}) | |
if: ${{ github.ref != 'refs/heads/production' }} | |
env: | |
VUEPRESS_BASE_URL: /${{ steps.branch-name.outputs.current_branch }}/ | |
run: npx nx run --verbose dialtone-documentation:build | |
- name: Deploy to GitHub Pages (${{ steps.branch-name.outputs.current_branch }}) | |
if: ${{ github.ref != 'refs/heads/production' }} | |
uses: JamesIves/github-pages-deploy-action@v4.2.5 | |
with: | |
branch: gh-pages | |
folder: apps/dialtone-documentation/docs/.vuepress/dist | |
target-folder: ${{ steps.branch-name.outputs.current_branch }} | |
- name: Build library and docsite | |
if: ${{ github.ref == 'refs/heads/production' }} | |
run: npx nx run --verbose dialtone-documentation:build | |
- name: Deploy to GitHub Pages | |
if: ${{ github.ref == 'refs/heads/production' }} | |
uses: JamesIves/github-pages-deploy-action@v4.2.5 | |
with: | |
branch: gh-pages | |
folder: apps/dialtone-documentation/docs/.vuepress/dist | |
clean-exclude: | | |
deploy-previews | |
legacy | |
staging | |
next |