Skip to content

Fix the Privacy Guides VPN link #33

Fix the Privacy Guides VPN link

Fix the Privacy Guides VPN link #33

Workflow file for this run

name: Deploy
on: [ push ]
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: read
deployments: write
strategy:
matrix:
node-version: [ 20 ]
steps:
- uses: actions/checkout@v4
with:
# Necessary for Lunaria to work properly
# Makes the action clone the entire git history
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run build
- name: Publish
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_ACCOUNT_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: megathread
directory: docs/.vitepress/dist
gitHubToken: ${{ secrets.GITHUB_TOKEN }}