Skip to content

Commit bd631fc

Browse files
committed
Repo Moved from HyberHost to new GameForgeGG org
1 parent 89b06d4 commit bd631fc

8 files changed

Lines changed: 19 additions & 21 deletions

File tree

.github/CODEOWNERS

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@
33
# Team format: @org/team-name
44

55
# Default owner for the entire repository
6-
* @HyberHost/egg-maintainers
6+
* @GameForgeGG/egg-maintainers
77

88
# Runtime/image files
9-
/Yolk/ @HyberHost/egg-maintainers
9+
/Yolk/ @GameForgeGG/egg-maintainers
1010

1111
# Reference assets
12-
/ref/ @HyberHost/egg-maintainers
12+
/ref/ @GameForgeGG/egg-maintainers
1313

1414
# Shell scripts
15-
*.sh @HyberHost/egg-maintainers
15+
*.sh @GameForgeGG/egg-maintainers
1616

1717
# Pterodactyl egg/panel config
18-
/sandbox-pterodactyl.json @HyberHost/egg-maintainers
18+
/sandbox-pterodactyl.json @GameForgeGG/egg-maintainers
1919

2020
# GitHub settings and governance files
21-
/.github/ @HyberHost/management @HyberHost/egg-maintainers
22-
/CONTRIBUTING.md @HyberHost/management @HyberHost/egg-maintainers
23-
/README.md @HyberHost/management @HyberHost/egg-maintainers
21+
/.github/ @GameForgeGG/management @GameForgeGG/egg-maintainers
22+
/CONTRIBUTING.md @GameForgeGG/management @GameForgeGG/egg-maintainers
23+
/README.md @GameForgeGG/management @GameForgeGG/egg-maintainers

.github/workflows/build-and-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- cron: "0 3 */3 * *" # every 3 days at 3am UTC
1414

1515
concurrency:
16-
group: ghcr-gameforge-sbox-egg-${{ github.ref }}
16+
group: ghcr-sbox-egg-${{ github.ref }}
1717
cancel-in-progress: true
1818

1919
permissions:
@@ -47,7 +47,7 @@ jobs:
4747
id: meta
4848
uses: docker/metadata-action@v5
4949
with:
50-
images: ghcr.io/hyberhost/gameforge-sbox-egg
50+
images: ghcr.io/${{ github.repository }}
5151
tags: |
5252
type=raw,value=latest,enable={{is_default_branch}}
5353
type=raw,value=main,enable={{is_default_branch}}

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
ref/dxura-sbox/DockerFile
2-
ref/*
3-
.continue*
1+
ref/*

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 Steven Smith (Trading as HyberHost)
3+
Copyright (c) 2026 Steven Smith (Trading as GameForgeGG)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Project selection precedence:
7777
1. Import the appropriate egg into your panel:
7878
- **Pterodactyl**: import `sandbox-pterodactyl.json`
7979
- **Pelican**: import `sandbox-pelican.json`
80-
2. Set the Docker image to `ghcr.io/hyberhost/gameforge-sbox-egg:latest` (or your own build — see `Yolk/README.md`).
80+
2. Set the Docker image to `ghcr.io/GameForgeGG/sbox-egg:latest` (or your own build — see `Yolk/README.md`).
8181
3. Create a server and configure variables.
8282
4. Start the server. On first boot it will seed files and run the updater before launching.
8383

Yolk/DockerFile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# Build from the repo root:
1111
# docker build --platform linux/amd64 \
1212
# -f Yolk/DockerFile \
13-
# -t hyberhost/gameforge-sbox-egg:latest \
13+
# -t GameForgeGG/sbox-egg:latest:latest \
1414
# [--build-arg BAKE_WIN_DOTNET_VERSION=10.0.2] \
1515
# .
1616

@@ -100,12 +100,12 @@ RUN if ! find /work/wineprefix/drive_c -name hostfxr.dll 2>/dev/null | grep -q .
100100
# ─────────────────────────────────────────────────────────────────────────────
101101
FROM steamcmd/steamcmd:alpine
102102

103-
LABEL author="Steven A. Smith" maintainer="steven.smith@hyberhost.com"
104-
LABEL description="s&box Pterodactyl Egg" version="2.1" license="MIT"
103+
LABEL author="Steven A. Smith" maintainer="team@gameforge.gg"
104+
LABEL description="s&box Pterodactyl Egg" version="2.2" license="MIT"
105105
LABEL org.opencontainers.image.authors="Steven A. Smith" \
106106
org.opencontainers.image.description="s&box Game Server Egg" \
107107
org.opencontainers.image.licenses="MIT" \
108-
org.opencontainers.image.source="https://github.com/HyberHost/GameForge-sbox-egg"
108+
org.opencontainers.image.source="https://github.com/GameForgeGG/sbox-egg"
109109

110110
ARG PUID=999
111111
ARG PGID=999

sandbox-pelican.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"description": "s&box dedicated server using a custom runtime image with baked Wine + Windows .NET.",
1212
"features": [],
1313
"docker_images": {
14-
"ghcr.io/hyberhost/gameforge-sbox-egg:latest": "ghcr.io/hyberhost/gameforge-sbox-egg:latest"
14+
"ghcr.io\/GameForgeGG\/sbox-egg:latest": "ghcr.io\/GameForgeGG\/sbox-egg:latest"
1515
},
1616
"file_denylist": [],
1717
"startup": "start-sbox",

sandbox-pterodactyl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"description": "s&box dedicated server using a custom runtime image with baked Wine + Windows .NET.",
1010
"features": [],
1111
"docker_images": {
12-
"ghcr.io\/hyberhost\/gameforge-sbox-egg:latest": "ghcr.io\/hyberhost\/gameforge-sbox-egg:latest"
12+
"ghcr.io\/GameForgeGG\/sbox-egg:latest": "ghcr.io\/GameForgeGG\/sbox-egg:latest"
1313
},
1414
"file_denylist": [],
1515
"startup": "start-sbox",

0 commit comments

Comments
 (0)