Refresh lockfiles for workflows #12
This file contains hidden or 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 Landing Page | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".github/workflows/deploy-landing.yml" | |
| - "apps/landing-page/**" | |
| - "package.json" | |
| - "package-lock.json" | |
| - "pnpm-lock.yaml" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| deployments: write | |
| concurrency: | |
| group: deploy-landing-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm install --include=optional | |
| - name: Build static landing page | |
| working-directory: apps/landing-page | |
| run: npm run build | |
| - name: Verify required static routes | |
| run: | | |
| test -f apps/landing-page/out/index.html | |
| test -f apps/landing-page/out/privacy/index.html | |
| test -f apps/landing-page/out/download/index.html | |
| test -f apps/landing-page/out/sitemap.xml | |
| test -f apps/landing-page/out/robots.txt | |
| - name: Validate Cloudflare deploy secrets | |
| env: | |
| CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN || secrets.CF_API_TOKEN }} | |
| CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID || '7d048325699a5acddb44d3be31cf6ba9' }} | |
| run: | | |
| missing=() | |
| test -n "$CLOUDFLARE_API_TOKEN" || missing+=("CLOUDFLARE_API_TOKEN") | |
| test -n "$CLOUDFLARE_ACCOUNT_ID" || missing+=("CLOUDFLARE_ACCOUNT_ID") | |
| if [ "${#missing[@]}" -gt 0 ]; then | |
| echo "::error::Missing GitHub deploy secrets: ${missing[*]}" | |
| exit 1 | |
| fi | |
| - name: Deploy to Cloudflare Pages | |
| uses: cloudflare/wrangler-action@v3 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN || secrets.CF_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID || '7d048325699a5acddb44d3be31cf6ba9' }} | |
| command: pages deploy apps/landing-page/out --project-name=codevetter --branch=main | |
| gitHubToken: ${{ secrets.GITHUB_TOKEN }} |