chore(deps): bump next from 15.5.6 to 15.5.7 #316
Workflow file for this run
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 Deploy | |
| on: [push] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| deployments: write | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '18' | |
| package-manager-cache: false | |
| - run: corepack enable | |
| - run: yarn --immutable | |
| - run: yarn build | |
| - name: Publish to Cloudflare Pages | |
| uses: cloudflare/pages-action@1 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
| projectName: forest-website | |
| directory: ./out | |
| gitHubToken: ${{ secrets.GITHUB_TOKEN }} |