|
| 1 | +#################### 🚧 WARNING: READ THIS BEFORE USING THIS FILE 🚧 #################### |
| 2 | +# |
| 3 | +# |
| 4 | +# |
| 5 | +# IF YOU DON'T KNOW WHAT YOU'RE DOING, YOU CAN EASILY LEAK SECRETS BY USING A |
| 6 | +# `pull_request_target` WORKFLOW INSTEAD OF `pull_request`! SERIOUSLY, DO NOT |
| 7 | +# BLINDLY COPY AND PASTE THIS FILE WITHOUT UNDERSTANDING THE FULL IMPLICATIONS |
| 8 | +# OF WHAT YOU'RE DOING! WE HAVE TESTED THIS FOR OUR OWN USE CASES, WHICH ARE |
| 9 | +# NOT NECESSARILY THE SAME AS YOURS! WHILE WE AREN'T EXPOSING ANY OF OUR SECRETS, |
| 10 | +# ONE COULD EASILY DO SO BY MODIFYING OR ADDING A STEP TO THIS WORKFLOW! |
| 11 | +# |
| 12 | +# |
| 13 | +# |
| 14 | +#################### 🚧 WARNING: READ THIS BEFORE USING THIS FILE 🚧 #################### |
| 15 | + |
| 16 | +name: Preview Deployment |
| 17 | +on: |
| 18 | + pull_request_target: |
| 19 | + |
| 20 | +# cancel in-progress runs on new commits to same PR (github.event.number) |
| 21 | +concurrency: |
| 22 | + group: ${{ github.workflow }}-${{ github.event.number || github.sha }} |
| 23 | + cancel-in-progress: true |
| 24 | + |
| 25 | +jobs: |
| 26 | + deploy-preview: |
| 27 | + permissions: |
| 28 | + contents: read |
| 29 | + pull-requests: write |
| 30 | + deployments: write |
| 31 | + |
| 32 | + runs-on: ubuntu-latest |
| 33 | + name: Deploy Preview to Cloudflare Pages |
| 34 | + steps: |
| 35 | + - name: Checkout repository |
| 36 | + uses: actions/checkout@v4 |
| 37 | + with: |
| 38 | + ref: ${{ github.event.pull_request.head.ref }} |
| 39 | + repository: ${{ github.event.pull_request.head.repo.full_name }} |
| 40 | + submodules: 'recursive' |
| 41 | + |
| 42 | + - name: Get yarn cache directory path |
| 43 | + id: yarn-cache-dir-path |
| 44 | + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT |
| 45 | + |
| 46 | + - name: Cache Node dependencies |
| 47 | + uses: actions/cache@v4 |
| 48 | + id: yarn-cache |
| 49 | + with: |
| 50 | + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} |
| 51 | + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} |
| 52 | + restore-keys: | |
| 53 | + ${{ runner.os }}-yarn- |
| 54 | + |
| 55 | + - name: Cache Next Build |
| 56 | + uses: actions/cache@v4 |
| 57 | + with: |
| 58 | + path: | |
| 59 | + ${{ steps.yarn-cache-dir-path.outputs.dir }} |
| 60 | + ${{ github.workspace }}/.next/cache |
| 61 | + key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} |
| 62 | + restore-keys: | |
| 63 | + ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}- |
| 64 | + |
| 65 | + - name: Setup Node.js |
| 66 | + uses: actions/setup-node@v4 |
| 67 | + with: |
| 68 | + node-version: 20 |
| 69 | + |
| 70 | + - name: Install dependencies |
| 71 | + run: yarn install --frozen-lockfile |
| 72 | + |
| 73 | + - name: Build Site |
| 74 | + run: yarn run build |
| 75 | + |
| 76 | + - name: Deploy to Cloudflare Pages |
| 77 | + uses: AdrianGonz97/refined-cf-pages-action@v1 |
| 78 | + with: |
| 79 | + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} |
| 80 | + accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} |
| 81 | + githubToken: ${{ secrets.GITHUB_TOKEN }} |
| 82 | + projectName: ${{ vars.CF_PROJECT_NAME }} |
| 83 | + directory: out |
| 84 | + deploymentName: Preview |
0 commit comments