Skip to content

chore(deps): update dependency @types/react to v17.0.69 (#58) #84

chore(deps): update dependency @types/react to v17.0.69 (#58)

chore(deps): update dependency @types/react to v17.0.69 (#58) #84

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
concurrency:
group: deploy-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: |
yarn --frozen-lockfile
yarn build
cd apps/csv
yarn export
touch out/.nojekyll
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.4
with:
branch: gh-pages
folder: apps/csv/out