Skip to content

Update google drive video to youtube video #242

Update google drive video to youtube video

Update google drive video to youtube video #242

name: Check and Deploy docusaurus
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
paths:
- "docusaurus/**"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
cache-dependency-path: docusaurus/yarn.lock
- name: Install dependencies
run: |
cd docusaurus
yarn install
- name: Build
run: |
cd docusaurus
yarn build
deploy:
needs: validate
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
id-token: write
pages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
cache-dependency-path: docusaurus/yarn.lock
- name: Install dependencies
run: |
cd docusaurus
yarn install
- name: Build
run: |
cd docusaurus
yarn build
- name: Setup Pages
uses: actions/configure-pages@v4
with:
enablement: true
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: docusaurus/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2