-
-
Notifications
You must be signed in to change notification settings - Fork 52
72 lines (63 loc) · 2.03 KB
/
commit-preview.yaml
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
61
62
63
64
65
66
67
68
69
70
71
72
on: [push]
name: Commit preview
jobs:
generate-preview:
name: Generate commit preview
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
env:
GITHUB_PUBLISH_TOKEN: ${{ secrets.COZY_PAT }}
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
filter: 'blob:none'
- name: Setup PNPM and install dependencies
uses: pnpm/action-setup@v4
with:
version: latest
run_install: |
- args: [--frozen-lockfile]
- name: Build the project
run: pnpm run build
- name: Upload HTML artifact
uses: actions/upload-artifact@v4
with:
name: website-html
path: dist
retention-days: 1
- name: Upload Functions artifact
uses: actions/upload-artifact@v4
with:
name: website-functions
path: functions
retention-days: 1
- name: Upload package artifact
uses: actions/upload-artifact@v4
with:
name: website-package
path: |
package.json
package-lock.json
retention-days: 1
- name: Publish to Pages
if: env.CLOUDFLARE_API_TOKEN != '' && env.CLOUDFLARE_ACCOUNT_ID != ''
uses: cloudflare/pages-action@v1
id: publish
with:
apiToken: ${{ env.CLOUDFLARE_API_TOKEN }}
accountId: ${{ env.CLOUDFLARE_ACCOUNT_ID }}
projectName: quiltmc-org
directory: dist
- name: Add a comment on the commit
if: env.GITHUB_PUBLISH_TOKEN != ''
uses: peter-evans/commit-comment@5a6f8285b8f2e8376e41fe1b563db48e6cf78c09 # v3.0.0
with:
token: ${{ env.GITHUB_PUBLISH_TOKEN }}
repository: ${{ github.repository }}
sha: ${{ github.sha }}
body: "See preview on Cloudflare Pages: ${{ steps.publish.outputs.url }}"