chore(deps): update pnpm/action-setup action to v4.2.0 (#125) #121
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: cloudflare-pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.3.0 | |
| - uses: ./.github/actions/prepare | |
| - name: Use pnpm to build site | |
| run: pnpm build | |
| - name: Deploy to CF Pages | |
| uses: cloudflare/wrangler-action@v3.14.1 | |
| with: | |
| apiToken: ${{ secrets.CF_API_TOKEN }} | |
| accountId: ${{ secrets.CF_ACCOUNT_ID }} | |
| command: pages deploy dist --project-name=numify --commit-dirty=true |