Update tauri icons

This commit is contained in:
Jai A
2023-03-30 14:37:52 -07:00
parent f1a9a4b580
commit 20a538f0ff
18 changed files with 1 additions and 35 deletions

View File

@@ -31,4 +31,4 @@ jobs:
- uses: actions-rs/cargo@v1
name: Build program
with:
command: build
command: build --bin theseus_cli

View File

@@ -1,34 +0,0 @@
name: Library Build
on:
push:
branches: [ master ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./theseus
steps:
- uses: actions/checkout@v2
- name: install dependencies (ubuntu only)
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Get build cache
id: cache-build
uses: actions/cache@v2
with:
path: ../target/**
key: ${{ runner.os }}-build-cache
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
name: Build program
with:
command: build