-
-
Notifications
You must be signed in to change notification settings - Fork 83
66 lines (58 loc) · 1.56 KB
/
queues.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
name: Generate Email/Push Queues
on:
workflow_dispatch:
inputs:
site:
type: choice
description: Which site?
options:
- f1
- f2
- f3
- fe
- indycar
- motogp
- wseries
- extremee
- f1-academy
workflow_call:
inputs:
site:
required: true
type: string
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: '16'
- 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 firebase-admin
npm i dayjs
- name: Generate Specific Queues
run: |
touch .env
echo FIREBASE_CREDENTIALS=$FIREBASE_CREDENTIALS >> .env
sudo node build/generate-queues.mjs ${{env.SITE}}
env:
FIREBASE_CREDENTIALS: ${{ secrets.FIREBASE_CREDENTIALS }}