-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (34 loc) · 912 Bytes
/
main.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
name: Build it up!
on:
# # schedule:
# # - cron: '0 0 * * *'
push:
branches:
- main
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
# - name: Setup Git
# run: |
# git config user.name "danelliottpalmer"
# git config user.email "[email protected]"
# - name: Install and Build
# run: |
# npm ci
# npm run build
# - name: Create Index.html
# run: |
# node lib/index.js
# - name: Commit Files
# run: |
# git add index.html games.ics
# git commit -m "feat(files): update static index and games calendar"
# git push origin main