We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e53c1c9 commit 119381bCopy full SHA for 119381b
.github/workflows/deploy.yml
@@ -29,6 +29,8 @@ jobs:
29
run: npm ci
30
- name: Build
31
run: npm run build
32
+ env:
33
+ NEXT_PUBLIC_REPO_NAME: ${{ github.event.repository.name }}
34
- name: Add .nojekyll
35
run: touch out/.nojekyll
36
- name: Upload artifact
next.config.ts
@@ -1,6 +1,6 @@
1
import type { NextConfig } from "next";
2
3
-const repoName = "vibecoding_tutorial";
+const repoName = process.env.NEXT_PUBLIC_REPO_NAME || "VibeCoding_Tutorial";
4
5
const nextConfig: NextConfig = {
6
output: "export",
public/data_viz.png
-652 KB
public/ide_interface.png
-844 KB
0 commit comments