.github/workflows/publish-cf-pages.yaml #8
This file contains 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
on: | |
# push: # not required? | |
# branches: | |
# - main | |
pull_request: {} # NOTE: worktree would be a temporal merge commit | |
workflow_dispatch: {} | |
# inputs: | |
# environment: | |
# description: "Choose an environment to deploy to: <Preview|Production>" | |
# required: true | |
# default: "Preview" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
cache: npm | |
cache-dependency-path: 'package-lock.json' | |
- run: npm ci | |
- uses: actions/cache@v4 | |
with: | |
path: web/.next | |
key: ${{ runner.os }}-next-build-${{ hashFiles('package-lock.json') }} | |
- run: npm run --workspace=web build:pages | |
- id: deploy | |
uses: cloudflare/wrangler-action@v3 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
wranglerVersion: '3.36.0' # same as in /package.json | |
command: | | |
pages deploy web/.vercel/output/static --project-name=slides-ihate-work-monorepo --branch=${{ github.ref_name }} --commit-hash=${{ github.sha }} --env=${{ (github.ref_name == 'main' && 'Production') || (github.ref_name != 'main' && 'Preview') }} | |
- name: print deployment-url | |
env: | |
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }} | |
run: echo $DEPLOYMENT_URL | |
- uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: | | |
Deployed to CF pages (Preview) at ${{ steps.deploy.outputs.deployment-url }} | |
comment_tag: deploy_preview | |
if: ${{ github.ref_name != 'main' }} | |
- uses: thollander/actions-comment-pull-request@v2 | |
with: | |
message: | | |
Deployed to CF pages (Prod) at ${{ steps.deploy.outputs.deployment-url }} | |
comment_tag: deploy_prod | |
if: ${{ github.ref_name == 'main' }} |