Skip to content

Commit

Permalink
chore: fix ci again
Browse files Browse the repository at this point in the history
  • Loading branch information
reyamir committed May 12, 2024
1 parent 99aaf3d commit e1fbcf0
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,24 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "pnpm"
cache-dependency-path: pnpm-lock.yaml

- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: 8.x.x
run_install: false

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}

- name: Install dependencies (ubuntu only)
if: matrix.settings.platform == 'ubuntu-22.04'
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y build-essential libssl-dev javascriptcoregtk-4.1 libayatana-appindicator3-dev libsoup-3.0-dev libgtk-3-dev libwebkit2gtk-4.1-dev webkit2gtk-4.1 librsvg2-dev patchelf
- name: Install PNPM
uses: pnpm/action-setup@v2
with:
version: 8.x.x
run_install: false

- name: Install frontend dependencies
run: pnpm install

Expand All @@ -69,5 +67,5 @@ jobs:
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
args: ${{ matrix.settings.args }}
args: ${{ matrix.args }}
includeDebug: false

0 comments on commit e1fbcf0

Please sign in to comment.