build(deps): bump ws from 6.2.2 to 6.2.3 in /docs #98
Workflow file for this run
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: Documentation | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "docs/**" | |
- ".github/workflows/docs.yaml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "docs/**" | |
- ".github/workflows/docs.yaml" | |
env: | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
NETLIFY_ACCESS_TOKEN: ${{ secrets.NETLIFY_ACCESS_TOKEN }} | |
OUT_DIR: build/ | |
TARGET_OUT_DIR: build/docs | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Build Docs | |
run: | | |
yarn | |
node ./node_modules/mdx-link-checker/index.js pages | |
yarn build | |
working-directory: ./docs | |
- name: Prepare Deployment | |
run: | | |
if [ ! -z "$NETLIFY_ACCESS_TOKEN" ] | |
then | |
rm -rf $OUT_DIR/docs/fragments $OUT_DIR/docs/**/fragments | |
mkdir -p tmp-$TARGET_OUT_DIR | |
mv $OUT_DIR/* tmp-$TARGET_OUT_DIR | |
mkdir -p $TARGET_OUT_DIR | |
mv tmp-$TARGET_OUT_DIR/* $TARGET_OUT_DIR | |
npm install -g [email protected] | |
fi | |
working-directory: ./docs | |
- name: Deploy Preview Site | |
if: github.ref != 'refs/heads/main' | |
run: | | |
if [ ! -z "$NETLIFY_ACCESS_TOKEN" ] | |
then | |
netlify deploy --auth=$NETLIFY_ACCESS_TOKEN --site=$NETLIFY_SITE_ID --dir=$OUT_DIR | |
fi | |
working-directory: ./docs | |
- name: Deploy Production Site | |
if: github.ref == 'refs/heads/main' | |
run: | | |
if [ ! -z "$NETLIFY_ACCESS_TOKEN" ] | |
then | |
netlify deploy --auth=$NETLIFY_ACCESS_TOKEN --site=$NETLIFY_SITE_ID --dir=$OUT_DIR --prod | |
fi | |
working-directory: ./docs |