Skip to content

Commit 47e8a7b

Browse files
author
abrulic
committed
deployment fix?
1 parent 872419f commit 47e8a7b

File tree

4 files changed

+192
-175
lines changed

4 files changed

+192
-175
lines changed

.github/workflows/validate.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656
working-directory: docs
5757
env:
5858
APP_ENV: production
59-
run: pnpm run generate:docs -- --branch ${{ github.event.repository.default_branch }}
59+
DOCS_BRANCH: ${{ github.event.repository.default_branch }}
60+
run: pnpm run generate:docs
6061

6162
- name: Pack generated docs (tarball)
6263
run: tar -czf docs-generated.tgz -C docs generated-docs

docs/app/ui/icon/icons/types.ts

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
// This file is generated by icon spritesheet generator
22

33
export const iconNames = [
4-
"Zap",
5-
"X",
6-
"TriangleAlert",
7-
"Trash2",
8-
"Sun",
9-
"SunMoon",
10-
"ShieldCheck",
11-
"Search",
12-
"Rocket",
13-
"Pilcrow",
14-
"Palette",
15-
"Moon",
16-
"Menu",
17-
"Info",
18-
"Hash",
19-
"Github",
20-
"Ghost",
21-
"FileText",
22-
"Code",
23-
"Clock",
24-
"ClipboardCopy",
25-
"ClipboardCheck",
26-
"ChevronRight",
27-
"ChevronDown",
28-
"Bot",
29-
"ArrowRight",
30-
"ArrowLeft",
4+
"Zap",
5+
"X",
6+
"TriangleAlert",
7+
"Trash2",
8+
"Sun",
9+
"SunMoon",
10+
"ShieldCheck",
11+
"Search",
12+
"Rocket",
13+
"Pilcrow",
14+
"Palette",
15+
"Moon",
16+
"Menu",
17+
"Info",
18+
"Hash",
19+
"Github",
20+
"Ghost",
21+
"FileText",
22+
"Code",
23+
"Clock",
24+
"ClipboardCopy",
25+
"ClipboardCheck",
26+
"ChevronRight",
27+
"ChevronDown",
28+
"Bot",
29+
"ArrowRight",
30+
"ArrowLeft",
3131
] as const
3232

33-
export type IconName = (typeof iconNames)[number]
33+
export type IconName = typeof iconNames[number]

docs/app/utils/versions.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
// Auto-generated file. Do not edit manually.
2-
export const versions = ["current"] as const
2+
export const versions = [
3+
"current"
4+
] as const

0 commit comments

Comments
 (0)