Skip to content

Commit

Permalink
Fix pipelines and uninstall
Browse files Browse the repository at this point in the history
  • Loading branch information
Maclay74 committed Jul 9, 2023
1 parent 84b7a61 commit c6898f0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
25 changes: 11 additions & 14 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,18 @@ jobs:
chmod +x ./install.sh
chmod +x ./uninstall.sh
- name: 📦 Cache Cargo Registry
uses: actions/cache@v2
- name: 📦 Warm up cache
uses: actions/cache@v3
continue-on-error: false
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('./Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: 🎯 Cache Target
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-target-${{ hashFiles('./Cargo.lock') }}
restore-keys: |
${{ runner.os }}-target-
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-

- name: 🦀 Setup Rust
uses: actions-rs/toolchain@v1
Expand Down
2 changes: 1 addition & 1 deletion uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ sudo rm -f "/etc/systemd/system/ally-steam-patch.service"
rm -rf "/tmp/ally-steam-patch"

# Cleanup services folder
sudo rm "${WORKING_FOLDER}"
sudo rm -rf "${WORKING_FOLDER}"

0 comments on commit c6898f0

Please sign in to comment.