Skip to content

Commit

Permalink
Don't zip the deb
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Jul 18, 2024
1 parent b7807f5 commit 65d8833
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,9 @@ jobs:
with:
name: bundle-${{ matrix.platform }}
path: |
deployment/*.rar
deployment/*.msi
deployment/*.app
deployment/*.dmg
deployment/*.json
deployment/*.zip
deployment/*.deb
draft_release:
name: Draft Github release
Expand All @@ -92,6 +89,6 @@ jobs:
files: |
*.msi
*.dmg
*.zip
*.deb
draft: true
name: Neon Player Release
4 changes: 1 addition & 3 deletions deployment/_packaging/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ def create_zipped_deb_packages(dist_root: pathlib.Path, app_version: ParsedVersi
deb_folder = dist_root / "debs"
deb_folder.mkdir(exist_ok=True)
deb_pkg = create_deb_package(dist_root, "Neon Player", app_version)
deb_pkg.rename(deb_folder / deb_pkg.name)

shutil.make_archive(str(dist_root), "zip", deb_folder)
deb_pkg.rename(dist_root.parent / f"{dist_root.name}{deb_pkg.suffix}")


def create_deb_package(
Expand Down

0 comments on commit 65d8833

Please sign in to comment.