File tree Expand file tree Collapse file tree 8 files changed +215
-433
lines changed Expand file tree Collapse file tree 8 files changed +215
-433
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @untidy/thetvdb " : patch
3
+ ---
4
+
5
+ replace homepage url
Original file line number Diff line number Diff line change
1
+ name : Deploy static content to Pages
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ permissions :
7
+ contents : read
8
+ pages : write
9
+ id-token : write
10
+
11
+ concurrency :
12
+ group : " pages"
13
+ cancel-in-progress : false
14
+
15
+ jobs :
16
+ deploy :
17
+ name : 🏗️ Build and Deploy to Pages
18
+ environment :
19
+ name : github-pages
20
+ url : ${{ steps.deployment.outputs.page_url }}
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - name : Checkout repo
24
+ uses : actions/checkout@v4.1.1
25
+ - name : Setup pnpm
26
+ uses : pnpm/action-setup@v3.0.0
27
+ with :
28
+ version : 8.15.6
29
+ - name : Setup Node
30
+ uses : actions/setup-node@v4.0.2
31
+ with :
32
+ node-version-file : " .nvmrc"
33
+ cache : pnpm
34
+ - name : Install dependencies
35
+ run : pnpm install
36
+ - name : Run build
37
+ run : pnpm docs:build
38
+ - name : Setup Pages
39
+ uses : actions/configure-pages@v5
40
+ - name : Upload artifact
41
+ uses : actions/upload-pages-artifact@v3
42
+ with :
43
+ path : " ./packages/web/dist"
44
+ - name : Deploy to GitHub Pages
45
+ id : deployment
46
+ uses : actions/deploy-pages@v4
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22
22
],
23
23
"author" : " falsepopsky" ,
24
24
"license" : " Apache-2.0" ,
25
- "homepage" : " https://untidy-thetvdb.netlify.app/ " ,
25
+ "homepage" : " https://falsepopsky.github.io/thetvdb " ,
26
26
"scripts" : {
27
27
"clean:build" : " rm -rf dist" ,
28
28
"prebuild" : " pnpm run clean:build" ,
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ import tailwind from '@astrojs/tailwind';
3
3
import { defineConfig } from 'astro/config' ;
4
4
5
5
export default defineConfig ( {
6
+ site : 'https://falsepopsky.github.io' ,
7
+ base : 'thetvdb' ,
6
8
integrations : [
7
9
tailwind ( { applyBaseStyles : false } ) ,
8
10
starlight ( {
Original file line number Diff line number Diff line change @@ -88,4 +88,4 @@ const data = await client.characterById('64140522');
88
88
</Details >
89
89
90
90
That's it! You have now made your first request. For more documentation, please check the
91
- [ API] ( /api/ ) section.
91
+ [ API] ( /thetvdb/ api/ ) section.
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ template: splash
5
5
hero :
6
6
tagline : Client library for TheTVDB API in Node.js
7
7
image :
8
- file : ../../ assets/favicon.png
8
+ file : ' @ assets/favicon.png'
9
9
actions :
10
10
- text : Get Started
11
- link : /guides/getting-started/
11
+ link : /thetvdb/ guides/getting-started/
12
12
icon : right-arrow
13
13
variant : primary
14
14
- text : View on GitHub
You can’t perform that action at this time.
0 commit comments