mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-06 22:33:34 -04:00
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:
2
.github/actions/setup-pnpm/action.yml
vendored
2
.github/actions/setup-pnpm/action.yml
vendored
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
@@ -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 },
|
||||
|
||||
@@ -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>;
|
||||
|
||||
@@ -67,5 +67,5 @@
|
||||
"eslintConfig": {
|
||||
"root": true
|
||||
},
|
||||
"packageManager": "pnpm@9.0.1"
|
||||
"packageManager": "pnpm@9.0.2"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user