Skip to content

Commit

Permalink
Replace Appimage with deb (#2345)
Browse files Browse the repository at this point in the history
* replace appimage with deb

* Update pnpm to 9.0.2 and lock CI version

---------

Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
  • Loading branch information
utkubakir and HeavenVolkoff authored Apr 17, 2024
1 parent d639ed4 commit 6c5e80f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 9.x.x
version: 9.0.2

- name: Install Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ If you encounter any issues, ensure that you are using the following versions of

- Rust version: **1.75**
- Node version: **18.18**
- Pnpm version: **9.0.1**
- Pnpm version: **9.0.2**

After cleaning out your build artifacts using `pnpm clean`, `git clean`, or `cargo clean`, it is necessary to re-run the `setup-system` script.

Expand Down
2 changes: 1 addition & 1 deletion apps/landing/src/app/Downloads/Platform.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const platforms = {
name: 'Linux',
os: 'linux',
icon: LinuxLogo,
version: 'AppImage',
version: 'deb',
links: [{ name: 'x86_64', arch: 'x86_64' }]
},
docker: { name: 'Docker', icon: Docker },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const tauriTarget = z.union([z.literal('linux'), z.literal('windows'), z.literal
const tauriArch = z.union([z.literal('x86_64'), z.literal('aarch64')]);

const extensions = {
linux: 'AppImage',
linux: 'deb',
windows: 'msi',
darwin: 'dmg'
} as const satisfies Record<z.infer<typeof tauriTarget>, string>;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@
"eslintConfig": {
"root": true
},
"packageManager": "pnpm@9.0.1"
"packageManager": "pnpm@9.0.2"
}

0 comments on commit 6c5e80f

Please sign in to comment.