forked from finos/calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (39 loc) · 1.12 KB
/
build.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
name: Build
on:
pull_request:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "0 */3 * * *"
jobs:
build:
strategy:
matrix:
node-version: [20.10.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: "${{ matrix.node-version }}"
- name: Build
run: |
npm install
npm run build
- name: Setup environment
run: gpg --quiet --batch --yes --decrypt --passphrase="$PASSPHRASE" --output calendar-service-account.json calendar-service-account.json.gpg
env:
PASSPHRASE: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_PASSPHRASE }}
- name: Get events from Google API
run: npm run getEvents
- name: Add CNAME in dist folder
run: cp CNAME dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACCESS_TOKEN }}
publish_dir: dist
if: github.event_name != 'pull_request'