Skip to content

Commit

Permalink
feat(workflow): test build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
camarm-dev committed Jul 5, 2024
1 parent c3fa884 commit d9073d7
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ on:

jobs:
publish-tauri:
defaults:
run:
working-directory: ./app
permissions:
contents: write
strategy:
Expand All @@ -32,7 +29,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies (ubuntu only)
working-directory: ./app
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
Expand All @@ -44,8 +40,9 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
node-version: 18
cache: 'npm' # Set this to npm, yarn or pnpm.
cache-dependency-path: app/package-lock.json

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down

0 comments on commit d9073d7

Please sign in to comment.