Skip to content

Update doc3.md

Update doc3.md #112

Workflow file for this run

name: Deploy
on:
push:
branches: [ master,feature/testimp/github-actions ]
permissions: write-all
jobs:
deploy:
name: Deploy to GitHub Pages
env:
GIT_USER: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v3
with:
node-version: '16.16.0'
cache: yarn
cache-dependency-path: ./website/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
- name: Build
run: yarn build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
# 👇 Specify build output path
path: website/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2