Skip to content

Commit

Permalink
updated: deploy.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuysshaa committed Dec 18, 2024
1 parent 451192a commit 9311feb
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ jobs:
- name: Cache Go modules
uses: actions/cache@v2
with:
path: /tmp/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
path: /path/to/your/cache
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }}
restore-keys: |
${{ runner.os }}-go-${{ github.sha }}
${{ runner.os }}-go-
- name: Install required dependencies
Expand Down Expand Up @@ -59,10 +58,9 @@ jobs:
- name: Cache Go modules
uses: actions/cache@v2
with:
path: /tmp/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
path: /path/to/your/cache
key: ${{ runner.os }}-go-${{ hashFiles('**/go.mod') }}
restore-keys: |
${{ runner.os }}-go-${{ github.sha }}
${{ runner.os }}-go-
- name: Get Dependencies
Expand Down

0 comments on commit 9311feb

Please sign in to comment.