Replace Appimage with deb (#2345)

* replace appimage with deb

* Update pnpm to 9.0.2 and lock CI version

---------

Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
This commit is contained in:
Utku
2024-04-17 17:09:12 -04:00
committed by GitHub
parent d639ed49ac
commit 6c5e80fffb
5 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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.

View File

@@ -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 },

View File

@@ -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>;

View File

@@ -67,5 +67,5 @@
"eslintConfig": {
"root": true
},
"packageManager": "pnpm@9.0.1"
"packageManager": "pnpm@9.0.2"
}