[docs][ente-cli]: add docs to troubleshoot keyring errors (#3870) #155
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: "Deploy (docs)" | |
on: | |
# Run on every push to main that changes docs/ | |
push: | |
branches: [main] | |
paths: | |
- "docs/**" | |
- ".github/workflows/docs-deploy.yml" | |
# Also allow manually running the workflow | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: docs | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup node and enable yarn caching | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
cache-dependency-path: "docs/yarn.lock" | |
- name: Install dependencies | |
run: yarn install | |
- name: Build production site | |
# Will create docs/.vitepress/dist | |
run: yarn build | |
- name: Publish | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
command: pages deploy --project-name=ente --commit-dirty=true --branch=help docs/docs/.vitepress/dist |