-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.66 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: cloudflare
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '[skip ci]') == false
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v3
- name: 📸 Calculate commit hash
id: sha
uses: pr-mpt/actions-commit-hash@v2
- name: 🔨 Prepare Node environment
uses: actions/setup-node@v4
with:
node-version: 22
- name: 🎉 Install project dependencies
run: yarn install
- name: 🏗️ Build app
run: yarn run build
- name: 🚀 Deploy to Cloudflare Pages
id: cloudflare_pages_deploy
uses: cloudflare/[email protected]
with:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
projectName: esachievement
directory: ./dist
env:
NODE_VERSION: 22
- name: 🚀 Deploy pages based on commit sha
uses: actions/github-script@v6
with:
script: |
const sha = context.payload.pull_request?.head.sha ?? context.sha;
await github.rest.repos.createCommitStatus({
owner: context.repo.owner,
repo: context.repo.repo,
context: 'cloudflare / build (push)',
description: 'Commit based deploy',
state: 'success',
sha,
target_url: "${{ steps.cloudflare_pages_deploy.outputs.url }}",
});