Skip to content

Commit

Permalink
fix: removed caching that caused stale builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Tormak9970 committed Apr 6, 2023
1 parent 587ca40 commit fe57505
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 28 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/debug-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: package-lock.json
node-version: 16

- name: Install Rust Stable
Expand All @@ -80,18 +78,6 @@ jobs:
- name: Install Frontend Dependencies
run: npm install

- name: Cache Rust Dependencies
uses: actions/cache@v3
with:
path: |
~/src-tauri/.cargo/bin/
~/src-tauri/.cargo/registry/index/
~/src-tauri/.cargo/registry/cache/
~/src-tauri/.cargo/git/db/
~/src-tauri/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-

- name: Build App
uses: tauri-apps/tauri-action@dev
env:
Expand Down
14 changes: 0 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,6 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: 'npm'
cache-dependency-path: package-lock.json
node-version: 16

- name: Install Rust Stable
Expand All @@ -86,18 +84,6 @@ jobs:
- name: Install Frontend Dependencies
run: npm install

- name: Cache Rust Dependencies
uses: actions/cache@v3
with:
path: |
~/src-tauri/.cargo/bin/
~/src-tauri/.cargo/registry/index/
~/src-tauri/.cargo/registry/cache/
~/src-tauri/.cargo/git/db/
~/src-tauri/target/
key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-

- name: Build App
uses: tauri-apps/tauri-action@dev
env:
Expand Down

0 comments on commit fe57505

Please sign in to comment.