chore(deps): Update clap requirement from =4.5.20 to =4.5.21 #35
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: Documents | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
ensure-toolchain: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: "20.11.0" | |
- name: Cache dependencies | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ./docs/node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('docs/package.json') }}-${{ hashFiles('docs/package-lock.json') }} | |
- name: echo node version | |
working-directory: ./docs | |
run: node -v | |
- if: ${{ steps.cache-node-modules.outputs.cache-hit != 'true' }} | |
name: Install dependencies | |
working-directory: ./docs | |
continue-on-error: true | |
run: | | |
sudo apt update && sudo apt install -y build-essential | |
source ~/.bashrc | |
npm install | |
build-and-deploy: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
needs: [ ensure-toolchain ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache dependencies | |
id: cache-node-modules | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ./docs/node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package.json') }} | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: "20.11.0" | |
- name: Build | |
working-directory: ./docs | |
run: npm run docs:build | |
- name: Deploy | |
working-directory: ./docs | |
env: | |
AWS_ENDPOINT_URL: ${{ secrets.DOCS_DEPLOY_S3_ENDPOINT_URL }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.DOCS_DEPLOY_S3_API_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.DOCS_DEPLOY_S3_SECRET_KEY }} | |
if: github.ref == 'refs/heads/main' && github.repository == 'DragonOS-Community/DADK' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y python3-pip python3-setuptools | |
python3 -m pip install --user awscli | |
aws s3 sync ./.vuepress/dist s3://dragonos-docs/p/dadk --delete |