Add missing dependency to install #5
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 | |
env: | |
CARGO_TERM_COLOR: always | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt, clippy | |
- name: Setup Node.js | |
uses: actions/setup-node@v3.2.0 | |
with: | |
node-version: '16.x' | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgtk-3-dev \ | |
webkit2gtk-4.1 javascriptcoregtk-4.1 libsoup-3.0 libappindicator3-dev \ | |
librsvg2-dev patchelf libdbus-1-dev \ | |
pkg-config \ | |
- name: Fetch Node.js Dependencies | |
run: yarn | |
- name: Build Release version | |
run: yarn tauri build | |
- name: Upload AppImage | |
uses: actions/upload-artifact@v3.1.0 | |
with: | |
name: ark-rate-desktop.AppImage | |
path: ./target/release/bundle/appimage/ARK-Rate-Desktop_*_amd64.AppImage |