Skip to content

Commit

Permalink
fix: cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Oct 23, 2023
1 parent fe3eb88 commit 09fa4bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 9999
id: build
run: |
CACHE=~/.pkg-cache/custom # custom cache folder
CACHE=./pkg-cache/custom # custom cache folder
rm -rf $CACHE/built-*
mkdir -p $CACHE
export PKG_CACHE_PATH=$CACHE
Expand All @@ -35,7 +35,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ github.token }}
file: ~/.pkg-cache/custom/built-*
file: ./pkg-cache/custom/built-*
file_glob: true
tag: node${{ github.event.inputs.node }}
overwrite: true

0 comments on commit 09fa4bc

Please sign in to comment.