-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Part of #531
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Build and Deploy (CloudFlare) | ||
|
||
on: | ||
push: | ||
branches: ['main'] | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
env: | ||
GOOGLE_ANALYTICS_TRACKING_ID: ${{ secrets.GOOGLE_TAGMANAGER_ID_SCDF }} | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: write | ||
|
||
jobs: | ||
# build and deploy main/PR | ||
build: | ||
name: Build site | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# agent may give node which doesn't work for us | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.2.0 | ||
|
||
# do site build | ||
- name: Yarn build | ||
env: | ||
NODE_OPTIONS: '--openssl-legacy-provider' | ||
run: | | ||
yarn install | ||
yarn run fix | ||
yarn build | ||
# Publish on CloudFlare | ||
- name: Publish to Cloudflare Pages | ||
id: cloudflare-publish | ||
uses: cloudflare/pages-action@v1 | ||
with: | ||
apiToken: ${{ secrets.CF_API_TOKEN }} | ||
accountId: ${{ secrets.CF_ACCOUNT_ID }} | ||
projectName: ${{ secrets.CF_PROJECT_NAME }} | ||
directory: public | ||
|
||
# If PR, comment with the preview URL | ||
- uses: mshick/add-pr-comment@v2 | ||
with: | ||
message-id: cloudflare-deploy | ||
message: | | ||
🚀 Preview at ${{ steps.cloudflare-publish.outputs.url }} | ||
# Chat Notification | ||
# - name: Google Chat Notification | ||
# uses: Co-qn/google-chat-notification@3691ccf4763537d6e544bc6cdcccc1965799d056 | ||
# with: | ||
# name: Build (${{ matrix.runner }}) | ||
# url: ${{ secrets.GOOGLE_CHAT_WEBHOOK }} | ||
# status: ${{ job.status }} | ||
# if: always() |