We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7883c7f commit 25787faCopy full SHA for 25787fa
β.env.exampleβ
@@ -1 +1 @@
1
-GITHUB_TOKEN="..."
+GITHUB_TOKEN=
β.github/workflows/update.ymlβ
@@ -33,6 +33,8 @@ jobs:
33
run: bun run update
34
35
- name: Generate Language Map
36
+ env:
37
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38
run: bun run get:languages
39
40
- name: Commit CSS file
βsrc/background.tsβ
@@ -1,4 +1,4 @@
-const BASE_URL = 'https://github.com/Rettend/github-material-icon-theme/tree/main/download'
+const BASE_URL = 'https://rettend.github.io/github-material-icon-theme/download'
2
const GET = (url: string) => fetch(`${BASE_URL}/${url}`)
3
const hours = (n: number) => n * 60 * 60 * 1000
4
0 commit comments