Skip to content

Commit 35d643e

Browse files
committed
Fix hardcoded references to old owner
1 parent 5ff3939 commit 35d643e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
deploy:
4040
name: Deploy
41-
if: github.ref == 'refs/heads/main' && github.repository_owner == 'eqrion'
41+
if: github.ref == 'refs/heads/main' && github.repository_owner == 'mozilla-spidermonkey'
4242
needs: build
4343
permissions:
4444
pages: write

src/TechTree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const TechTreesRepo =
2-
"https://raw.githubusercontent.com/eqrion/tech-trees/refs/heads/main";
2+
"https://raw.githubusercontent.com/mozilla-spidermonkey/tech-trees/refs/heads/main";
33

44
export function getKnownTreeUrl(known: string) {
55
return TechTreesRepo + "/" + known + ".json";

0 commit comments

Comments
 (0)