Skip to content

Commit 78c84f0

Browse files
brunoborgesCopilot
andcommitted
Fix GitHub Pages: point to correct repo URLs
GITHUB_RAW_BASE in step.html was pointing to the upstream fork instead of copilot-dev-days/agent-lab-python. Also fixed base href in deploy.yml. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent ed85fe7 commit 78c84f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
full_html = template.render(
6262
session=session,
6363
GameState=GameState,
64-
url_for=lambda name, path='': f'/vscode-github-copilot-agent-lab/app/static/{path}' if name == 'static' else path,
64+
url_for=lambda name, path='': f'/agent-lab-python/app/static/{path}' if name == 'static' else path,
6565
)
6666
6767
with open('_site/app/index.html', 'w') as f:

docs/step.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@
668668
const isLocal = window.location.hostname === 'localhost' || window.location.hostname === '127.0.0.1';
669669
const GITHUB_RAW_BASE = isLocal
670670
? '../workshop/'
671-
: 'https://raw.githubusercontent.com/madebygps/vscode-github-copilot-agent-lab/main/workshop/';
671+
: 'https://raw.githubusercontent.com/copilot-dev-days/agent-lab-python/main/workshop/';
672672

673673
// Get current step from URL
674674
function getCurrentStepId() {

0 commit comments

Comments
 (0)