-
-
Notifications
You must be signed in to change notification settings - Fork 82
79 lines (70 loc) · 1.95 KB
/
ics.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
name: Deploy ICS Files to Cloudflare Workers
on:
workflow_dispatch:
inputs:
site:
type: choice
description: Which site?
options:
- f1
- f2
- f3
- fe
- indycar
- motogp
- extremee
- f1-academy
workflow_call:
inputs:
site:
required: true
type: string
secrets:
CF_API_TOKEN:
required: true
CF_ZONE_ID:
required: true
CF_ACCOUNT_ID:
required: true
jobs:
build:
runs-on: ubuntu-latest
env:
SITE: ${{ github.event.inputs.site || inputs.site }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Site Selection
run: |
echo "${{ env.SITE }}"
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: |
npm i @cloudflare/wrangler
npm i ics
npm i dayjs
- name: Generate Specific Calendars
run: |
sudo node build/generate-calendars.js ${{env.SITE}}
- name: Publish to Cloudflare Workers Sites
run: |
mkdir -p ~/.wrangler/config/
echo "api_token=\"${CF_API_TOKEN}\"" > ~/.wrangler/config/default.toml
yarn wrangler publish --env ${{env.SITE}}
env:
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
CF_ZONE_ID: ${{ secrets.CF_ZONE_ID }}
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}