Skip to content

Commit

Permalink
CI: Fix tauri build
Browse files Browse the repository at this point in the history
Signed-off-by: Luis Garcia <[email protected]>
  • Loading branch information
luigi311 committed Oct 22, 2024
1 parent d86af89 commit 3ac8942
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,14 @@ jobs:
path: crates/tanoshi-web/dist

- name: Install deps (ubuntu)
if: ${{ matrix.os != 'macos-latest' && matrix.os != 'windows-latest' }}
if: ${{ matrix.os == 'ubuntu-latest' }}
run: sudo apt update && sudo apt upgrade -y && sudo apt install -y ${{ env.UBUNTU_DEPS }}

# No sudo on self hosted nodes
- name: Install deps (selfhosted)
if: ${{ matrix.os != 'ubuntu-latest' && matrix.os != 'windows-latest' && matrix.os != 'macos-latest' }}
run: apt update && apt upgrade -y && apt install -y ${{ env.UBUNTU_DEPS }}

- name: Install deps (macOS)
if: ${{ matrix.os == 'macos-latest' }}
run: brew install icu4c libarchive bzip2 lz4 zlib expat libiconv
Expand Down

0 comments on commit 3ac8942

Please sign in to comment.