Skip to content

Commit c12cf3d

Browse files
authored
Merge pull request #2 from falsepopsky/dev
fix: changeset release
2 parents a654905 + d4519ba commit c12cf3d

File tree

3 files changed

+48
-12
lines changed

3 files changed

+48
-12
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
release:
1616
name: 🚀 Release
17-
if: ${{ (github.event.workflow_run.conclusion == 'success') && (github.repository == 'falsepopsky/mobygmes') }}
17+
if: ${{ (github.event.workflow_run.conclusion == 'success') && (github.repository == 'falsepopsky/mobygames') }}
1818
runs-on: ubuntu-latest
1919
permissions:
2020
contents: write

.github/workflows/static.yaml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ concurrency:
1515
cancel-in-progress: false
1616

1717
jobs:
18-
build:
19-
name: 🏗️ Build
18+
deploy:
19+
name: 🏗️ Build and Deploy
20+
environment:
21+
name: github-pages
22+
url: ${{ steps.deployment.outputs.page_url }}
2023
runs-on: ubuntu-latest
2124
steps:
2225
- name: Checkout repo
@@ -36,15 +39,6 @@ jobs:
3639
run: pnpm install
3740
- name: Run build
3841
run: pnpm build:docs
39-
deploy:
40-
environment:
41-
name: github-pages
42-
url: ${{ steps.deployment.outputs.page_url }}
43-
runs-on: ubuntu-latest
44-
needs: build
45-
steps:
46-
- name: Checkout
47-
uses: actions/checkout@v4.1.1
4842
- name: Setup Pages
4943
uses: actions/configure-pages@v4
5044
- name: Upload artifact

packages/web/.astro/types.d.ts

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,20 +136,62 @@ declare module 'astro:content' {
136136

137137
type ContentEntryMap = {
138138
"docs": {
139+
"api/games/covers.mdx": {
140+
id: "api/games/covers.mdx";
141+
slug: "api/games/covers";
142+
body: string;
143+
collection: "docs";
144+
data: InferEntrySchema<"docs">
145+
} & { render(): Render[".mdx"] };
139146
"api/games/games.mdx": {
140147
id: "api/games/games.mdx";
141148
slug: "api/games/games";
142149
body: string;
143150
collection: "docs";
144151
data: InferEntrySchema<"docs">
145152
} & { render(): Render[".mdx"] };
153+
"api/games/id.mdx": {
154+
id: "api/games/id.mdx";
155+
slug: "api/games/id";
156+
body: string;
157+
collection: "docs";
158+
data: InferEntrySchema<"docs">
159+
} & { render(): Render[".mdx"] };
160+
"api/games/platformid.mdx": {
161+
id: "api/games/platformid.mdx";
162+
slug: "api/games/platformid";
163+
body: string;
164+
collection: "docs";
165+
data: InferEntrySchema<"docs">
166+
} & { render(): Render[".mdx"] };
167+
"api/games/platforms.mdx": {
168+
id: "api/games/platforms.mdx";
169+
slug: "api/games/platforms";
170+
body: string;
171+
collection: "docs";
172+
data: InferEntrySchema<"docs">
173+
} & { render(): Render[".mdx"] };
146174
"api/games/random.mdx": {
147175
id: "api/games/random.mdx";
148176
slug: "api/games/random";
149177
body: string;
150178
collection: "docs";
151179
data: InferEntrySchema<"docs">
152180
} & { render(): Render[".mdx"] };
181+
"api/games/recent.mdx": {
182+
id: "api/games/recent.mdx";
183+
slug: "api/games/recent";
184+
body: string;
185+
collection: "docs";
186+
data: InferEntrySchema<"docs">
187+
} & { render(): Render[".mdx"] };
188+
"api/games/screenshots.mdx": {
189+
id: "api/games/screenshots.mdx";
190+
slug: "api/games/screenshots";
191+
body: string;
192+
collection: "docs";
193+
data: InferEntrySchema<"docs">
194+
} & { render(): Render[".mdx"] };
153195
"api/genres.mdx": {
154196
id: "api/genres.mdx";
155197
slug: "api/genres";

0 commit comments

Comments
 (0)