Skip to content

Commit a172498

Browse files
Added sponsor list generator
* feat: add sponsor list generator; * feat: added deploy action; * fix: fixed layout; * fix: use utm links inside tooltips; * fix(CI): set engine version; * chore: reverted the start button title change; * fix: add the ability to retry the request to get a list of sponsors;
1 parent 871ece2 commit a172498

27 files changed

+1788
-1779
lines changed

.github/workflows/netlify-build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Trigger Netlify Build
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
# Run at 0000 daily
6+
- cron: '0 0 * * *'
7+
jobs:
8+
build:
9+
name: Request Netlify Webhook
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Curl request
13+
run: curl -X POST -d {} ${{ secrets.NETLIFY_DEPLOY_WEBHOOK }}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
node_modules
22
.DS_Store
33
public/
4+
temp/
5+
assets/sponsors/opencollective
46
*.css
57
*.css.map
68
# Local Netlify folder
7-
.netlify
9+
.netlify

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v16

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v16

assets/icons/social/facebook.png

889 Bytes
Loading

assets/icons/social/github.png

2.58 KB
Loading

assets/icons/social/instagram.png

2.63 KB
Loading

assets/icons/social/reddit.png

1.78 KB
Loading

assets/icons/social/tiktok.png

974 Bytes
Loading

assets/icons/social/twitter.png

2.08 KB
Loading

0 commit comments

Comments
 (0)