Skip to content

Commit 234b524

Browse files
committed
chore: fix build names
1 parent 0f0b14b commit 234b524

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,44 +17,44 @@ on:
1717
artifact-name:
1818
description: "Name of the uploaded artifact"
1919
value: SteamHunters-plugin-${{ inputs.version }}
20-
20+
2121
jobs:
2222
build:
2323
runs-on: ubuntu-latest
24-
24+
2525
steps:
2626
- name: Checkout code
2727
uses: actions/checkout@v4
28-
28+
2929
- name: Setup Python
3030
uses: actions/setup-python@v4
3131
with:
3232
python-version: '3.12'
33-
33+
3434
- name: Setup Bun
3535
uses: oven-sh/setup-bun@v1
3636
with:
3737
bun-version: latest
38-
38+
3939
- name: Install dependencies
4040
run: |
4141
bun install
4242
pip install -r requirements.txt
43-
43+
4444
- name: Build and create zip
4545
run: python helpers/build_zip.py
4646
env:
4747
RELEASE_VERSION: ${{ inputs.version }}
48-
48+
4949
- name: Extract zip for artifact
5050
run: |
5151
mkdir -p temp_artifact
52-
unzip "build/Achievement-Groups-plugin-${{ inputs.version }}.zip" -d temp_artifact/
53-
52+
unzip "build/Extendium-plugin-${{ inputs.version }}.zip" -d temp_artifact/
53+
5454
- name: Upload Build Artifact
5555
uses: actions/upload-artifact@v4
5656
with:
57-
name: Achievement-Groups-plugin-${{ inputs.version }}
57+
name: Extendium-plugin-${{ inputs.version }}
5858
path: temp_artifact/*
5959
if-no-files-found: error
6060
overwrite: true

frontend/extensions-manager/ExtensionManagerPopup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function ExtensionManagerPopup(): React.ReactNode {
2222
onDismiss={() => { setManagerPopup({ open: false }); }}
2323
popupWidth={mainWindow.innerWidth * 0.75}
2424
popupHeight={mainWindow.innerHeight * 0.65}
25-
minWidth={880}
25+
minWidth={1280}
2626
minHeight={370}
2727
resizable
2828
saveDimensionsKey="extensionManagerPopup"

helpers/build_zip.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def create_zip():
5858
print("Error: RELEASE_VERSION environment variable is required")
5959
return False
6060

61-
zip_name = f"Achievement-Groups-plugin-{version}.zip"
61+
zip_name = f"Extendium-plugin-{version}.zip"
6262

6363
# Root and output directories
6464
root_dir = Path(__file__).parent.parent
@@ -83,13 +83,13 @@ def create_zip():
8383
for file in files:
8484
file_path = Path(root) / file
8585
rel_path = file_path.relative_to(root_dir)
86-
zip_path_with_root = Path('Achievement-Groups-plugin') / rel_path
86+
zip_path_with_root = Path('Extendium-plugin') / rel_path
8787
print(f"Adding: {zip_path_with_root}")
8888
zipf.write(file_path, str(zip_path_with_root))
8989
# If it's a file, directly add it
9090
elif folder_path.is_file():
9191
rel_path = folder_path.relative_to(root_dir)
92-
zip_path_with_root = Path('Achievement-Groups-plugin') / rel_path
92+
zip_path_with_root = Path('Extendium-plugin') / rel_path
9393
if '.scss' in zip_path_with_root.as_posix():
9494
print(f"Skipping: {zip_path_with_root}")
9595
continue

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"description": "A plugin for Millennium that adds chrome extensions support to the client",
66
"version": "1.0.0",
77
"include": [
8-
"public/achievements.css"
8+
"public/extendium.css"
99
]
1010
}

0 commit comments

Comments
 (0)