-
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (48 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Deploy ewpratten.com
on:
push:
jobs:
build_dev:
name: Development Build
if: github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
environment: production
permissions:
contents: read
deployments: write
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Write the commit hash into the config
run: echo "commit = \"$(git rev-parse HEAD | cut -c1-7)\"" >> config.toml
- name: Build only
uses: shalzz/[email protected]
env:
BUILD_ONLY: true
BUILD_FLAGS: --drafts
build_prod:
name: Production Build
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
environment: production
permissions:
contents: read
deployments: write
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Write the commit hash into the config
run: echo "commit = \"$(git rev-parse HEAD | cut -c1-7)\"" >> config.toml
- name: Build only
uses: shalzz/[email protected]
env:
BUILD_ONLY: true
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ewpratten
directory: public
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: '2'