Skip to content

Commit 449a4e9

Browse files
committed
Initial version
1 parent 259e193 commit 449a4e9

9 files changed

Lines changed: 1778 additions & 0 deletions

File tree

.github/workflows/auto-update.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Update
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '10 10 */2 * *'
7+
8+
jobs:
9+
check-and-update:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
- uses: fregante/setup-git-user@v2
15+
- name: Try updating the version
16+
run: ./scripts/bump-and-publish.sh

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
components/
3+
svgs/

0 commit comments

Comments
 (0)