Add CF preview builds #3
Workflow file for this run
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
name: Publish preview on CF Pages | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
issues: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Setup Deno environment | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Build site | |
run: deno task build | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
- name: Deploy to CF Pages | |
id: deploy-preview | |
uses: cloudflare/pages-action@v1 | |
env: | |
API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
with: | |
apiToken: ${{ env.API_TOKEN }} | |
accountId: ${{ env.ACCOUNT_ID }} | |
projectName: ${{ github.event.repository.name }} | |
directory: 'target' | |
gitHubToken: ${{ env.GITHUB_TOKEN }} | |
- name: Report preview environment in PR | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: '${{ steps.deploy-preview.outputs.alias }}' | |
}) | |