-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.19 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
name: Build and Deploy
on:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'latest'
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Commit and push changes to repository
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Automated build/blog feed update'
- name: Set the domain
id: set-domain
run: |
echo "DOMAIN=$(node -e 'console.log(new URL(require("./src/customizations/siteproperties.json").url).hostname)')" >> $GITHUB_OUTPUT
- name: Add CNAME to dist
run: |
if [[ "${{ steps.set-domain.outputs.DOMAIN }}" != *.github.io ]]; then
echo ${{ steps.set-domain.outputs.DOMAIN }} > ./dist/CNAME
fi
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
branch: gh-pages