-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (71 loc) · 1.97 KB
/
pages.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Cloudflare Pages
on:
# schedule:
# - cron: "0 12 * * *"
push:
branches:
- main
env:
ASTRO_SITE: ${{ vars.ASTRO_SITE }}
GOATCOUNTER_SITE: ${{ vars.GOATCOUNTER_SITE }}
GISCUS_REPO: ${{ github.repository }}
GISCUS_REPO_ID: ${{ github.repository_id }}
GISCUSS_CATEGORY: ${{ vars.GISCUSS_CATEGORY }}
GISCUSS_CATEGORY_ID: ${{ vars.GISCUSS_CATEGORY_ID }}
STATUS_SITE: ${{ vars.STATUS_SITE }}
STATUS_SITE_ICON: ${{ vars.STATUS_SITE_ICON }}
## Node related.
DISABLE_OPENCOLLECTIVE: 1
ADBLOCK: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Get CV
run: curl -o public/cv.pdf ${{ secrets.CV_URL }}
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install Dependencies
run: npm install
- name: Build copernicus
run: npm run build
- name: Upload Pages Artifact
uses: actions/upload-artifact@v4
with:
name: pages
path: dist
retention-days: 1
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
deployments: write
steps:
- name: Download Pages Artifact
uses: actions/download-artifact@v4
with:
name: pages
path: dist
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
wranglerVersion: 3
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ secrets.CLOUDFLARE_PAGES_PROJECT }}
directory: dist
- name: Discord Notify
uses: sarisia/actions-status-discord@v1
if: always()
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
username: ${{ github.repository }}