Skip to content

Commit

Permalink
added status checks
Browse files Browse the repository at this point in the history
  • Loading branch information
SFSteffensen committed Aug 13, 2024
1 parent 360e0ca commit 043ced0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @SFSteffensen
10 changes: 9 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,33 +29,41 @@ jobs:
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
id: checkout

- name: setup node
id: setup-node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn

- name: install Rust stable and target
id: install-rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.rust-target }}

- name: Rust cache
id: rust-cache
uses: swatinem/rust-cache@v2
with:
workspaces: './src-tauri -> target'

- name: install dependencies (ubuntu only)
id: install-dependencies-ubuntu
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: install frontend dependencies
id: install-frontend-dependencies
run: yarn install

- uses: tauri-apps/tauri-action@v0
- name: Build and Release with Tauri
id: build-and-release
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit 043ced0

Please sign in to comment.