diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ea73f9..129f754 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,9 +22,9 @@ jobs: args: '--target aarch64-apple-darwin' - platform: 'macos-latest' # for Intel based macs. args: '--target x86_64-apple-darwin' - - platform: 'ubuntu-24.04' # for Tauri v1 you could replace this with ubuntu-20.04. + - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04. args: '' - - platform: 'ubuntu-24.04-arm' + - platform: 'ubuntu-22.04-arm' args: '--target aarch64-unknown-linux-gnu' - platform: 'windows-latest' args: '' @@ -48,12 +48,11 @@ jobs: targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-24.04' # This must match the platform value defined above. + if: matrix.platform == 'ubuntu-22.04' || matrix.platform == 'ubuntu-22.04-arm' # This must match the platform value defined above. run: | sudo apt-get update - sudo apt-get install -y libglib2.0-dev libgtk-3-dev libwebkit2gtk-4.1-dev + sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. - # You can remove the one that doesn't apply to your app to speed up the workflow a bit. - name: install frontend dependencies run: yarn install # change this to npm, pnpm or bun depending on which one you use. diff --git a/package.json b/package.json index cd54f92..a64eb41 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "drop-app", "private": true, - "version": "0.3.0-rc-6", + "version": "0.3.0-rc-7", "type": "module", "scripts": { "build": "nuxt build", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index d43f068..9f4a86e 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1247,7 +1247,7 @@ dependencies = [ [[package]] name = "drop-app" -version = "0.3.0-rc-6" +version = "0.3.0-rc-7" dependencies = [ "atomic-instant-full", "boxcar", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 4495d74..9268f9a 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "drop-app" -version = "0.3.0-rc-6" +version = "0.3.0-rc-7" description = "The client application for the open-source, self-hosted game distribution platform Drop" authors = ["Drop OSS"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6ee15df..0487174 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2.0.0", "productName": "Drop Desktop Client", - "version": "0.3.0-rc-6", + "version": "0.3.0-rc-7", "identifier": "dev.drop.app", "build": { "beforeDevCommand": "yarn dev --port 1432",