launch manifest error improved #207
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ tauri ] | |
jobs: | |
build-tauri: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout repository and submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 21 | |
- name: install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf libx11-dev xorg-dev libglu1-mesa-dev libglib2.0-0 libgtk2.0-dev | |
- name: Cache cargo registry | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo index | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache tauri build | |
uses: actions/cache@v3 | |
with: | |
path: ./src-tauri/target | |
key: ${{ runner.os }}-tauri-build-target-${{ hashFiles('**/Cargo.lock') }} | |
- name: install app dependencies and build it | |
run: yarn && yarn build | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
- uses: actions/upload-artifact@v3 | |
if: matrix.platform == 'ubuntu-latest' | |
with: | |
name: liquidlauncher-appimage-linux | |
path: ./src-tauri/target/release/bundle/appimage/liquidlauncher_**.AppImage.* | |
- uses: actions/upload-artifact@v3 | |
if: matrix.platform == 'ubuntu-latest' | |
with: | |
name: liquidlauncher-deb-linux | |
path: ./src-tauri/target/release/bundle/deb/liquidlauncher_**.deb | |
- uses: actions/upload-artifact@v3 | |
if: matrix.platform == 'windows-latest' | |
with: | |
name: liquidlauncher-windows | |
path: ./src-tauri/target/release/bundle/msi/liquidlauncher_**.msi.* | |
- uses: actions/upload-artifact@v3 | |
if: matrix.platform == 'macos-latest' | |
with: | |
name: liquidlauncher-macos | |
path: ./src-tauri/target/release/bundle/macos/liquidlauncher.app.tar.* |