-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (41 loc) · 1.14 KB
/
deploy.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
name: continuous-deployment
on:
push:
branches:
- main
- dev
schedule:
- cron: "0 2 * * 0"
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
name: build and deploy to Cloudflare Pages
steps:
- name: checkout
uses: actions/checkout@v3
# Run a build step here if your project requires
- name: setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: install packages and build
run: |
npm install
npm run script
npm run build
env:
MODE: production
SECRET_GH_PAT: ${{ secrets.SECRET_GH_PAT }}
- name: deploy to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ secrets.CL_PROJECT_NAME }}
directory: dist
# Optional: Enable this if you want to have GitHub Deployments triggered
# gitHubToken: ${{ secrets.SECRET_GH_PAT }}