Skip to content

Commit

Permalink
ci: fix nuxt studio token
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Trost <galexrt@googlemail.com>
galexrt committed May 31, 2024
1 parent 27eca12 commit 36b8565
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -61,6 +61,7 @@ jobs:
env:
NUXT_PUBLIC_SITE_URL: "https://fivenet.app/"
NUXT_UI_PRO_LICENSE: "${{ secrets.NUXT_UI_PRO_LICENSE }}"
NUXT_PUBLIC_STUDIO_TOKENS: "${{ secrets.NUXT_PUBLIC_STUDIO_TOKENS }}"
run: |
pnpm generate
21 changes: 21 additions & 0 deletions nuxt.schema.ts
Original file line number Diff line number Diff line change
@@ -53,6 +53,27 @@ export default defineNuxtSchema({
description: 'Icon for hash anchors.',
icon: 'i-ph-hash',
default: 'i-heroicons-hashtag-20-solid'
}),
menu: field({
type: 'icon',
title: 'Menu',
description: 'Icon for menus.',
icon: 'i-ph-hamburger',
default: 'i-mdi-menu'
}),
close: field({
type: 'icon',
title: 'Close',
description: 'Icon for close.',
icon: 'i-ph-x',
default: 'i-mdi-window-close'
}),
check: field({
type: 'icon',
title: 'Check',
description: 'Icon for check.',
icon: 'i-ph-check',
default: 'i-mdi-check-circle'
})
}
}),

0 comments on commit 36b8565

Please sign in to comment.