Skip to content

Commit

Permalink
ci: Improved readability of log of release actions (argoproj#11670)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaminyam authored Aug 25, 2023
1 parent 6e73248 commit d88795d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,18 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- uses: actions/cache@v3
- name: Restore node packages cache
uses: actions/cache@v3
with:
path: ui/node_modules
key: ${{ runner.os }}-node-dep-v1-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v3
- name: Restore go build cache
uses: actions/cache@v3
with:
path: /home/runner/.cache/go-build
key: GOCACHE-v2-${{ hashFiles('**/go.mod') }}
- uses: actions/cache@v3
- name: Restore go packages cache
uses: actions/cache@v3
with:
path: /home/runner/go/pkg/mod
key: GOMODCACHE-v2-${{ hashFiles('**/go.mod') }}
Expand Down

0 comments on commit d88795d

Please sign in to comment.