Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
lancejpollard committed Jan 23, 2024
1 parent fc366e8 commit 2973f5e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/choco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create cache directory
run: mkdir "$($env:LOCALAPPDATA)\choco-cache"
- name: Cache Tools
uses: actions/cache@v4
with:
path: /cache
path: "$($env:LOCALAPPDATA)\\choco-cache"
key: ${{ runner.os }}-temp-cache
- name: Set Choco cache path
run: choco config set cacheLocation /cache
run: choco config set cacheLocation "$($env:LOCALAPPDATA)\choco-cache"
- name: Install Node.js
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 2973f5e

Please sign in to comment.