Skip to content

Commit 3d3a9f8

Browse files
committed
2.4.0 - Wootility v5 & 80HE Support
1 parent 2d1c629 commit 3d3a9f8

File tree

7 files changed

+1452
-1046
lines changed

7 files changed

+1452
-1046
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ jobs:
3636
sudo apt-get update
3737
sudo apt-get install -y libwebkit2gtk-4.1-dev libhidapi-dev libayatana-appindicator3-dev libsoup-3.0-dev javascriptcoregtk-4.1-dev
3838
39+
- name: Install libffi6
40+
if: ${{ matrix.runner == 'ubuntu-latest' }}
41+
run: |
42+
curl -LO http://archive.ubuntu.com/ubuntu/pool/main/libf/libffi/libffi6_3.2.1-8_amd64.deb
43+
sudo dpkg -i libffi6_3.2.1-8_amd64.deb
44+
45+
- name: Install libcroco3
46+
if: ${{ matrix.runner == 'ubuntu-latest' }}
47+
run: |
48+
curl -LO https://archive.ubuntu.com/ubuntu/pool/main/libc/libcroco/libcroco3_0.6.13-1ubuntu0.1_amd64.deb
49+
sudo dpkg -i libcroco3_0.6.13-1ubuntu0.1_amd64.deb
50+
3951
- name: Install Protoc
4052
uses: arduino/setup-protoc@v2
4153
with:
@@ -53,15 +65,18 @@ jobs:
5365
run: rustup target add ${{ matrix.target }}
5466

5567
- name: Install Tauri CLI
56-
run: cargo install --locked --git https://github.com/Shays-Forks/tauri.git tauri-cli
68+
run: |
69+
rustup toolchain install 1.79
70+
rustup run 1.79 cargo install --locked --git https://github.com/Shays-Forks/tauri.git tauri-cli
5771
5872
- name: Build Tauri Installers/Bundles/Images
5973
uses: tauri-apps/tauri-action@dev
6074
env:
6175
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6276
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
77+
NO_STRIP: true
6378
with:
64-
args: --target ${{ matrix.target }}
79+
args: --target ${{ matrix.target }} --verbose
6580
releaseId: ${{ github.event.release.id }}
6681
tagName: ${{ github.ref_name }}
6782
tauriScript: "cargo tauri"

0 commit comments

Comments
 (0)