Skip to content

Commit

Permalink
Retry
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm committed Jun 23, 2023
1 parent d75b413 commit 5389cce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ permissions:
contents: read
packages: write
env:
GOPATH: /home/runner/go/
GOPROXY: https://proxy.golang.org
NG_CLI_ANALYTICS: ci
NODE_OPTIONS: "--max-old-space-size=8192"
TERM: xterm
Expand All @@ -45,6 +43,9 @@ jobs:
check-latest: true
cache-dependency-path: modules/api/go.sum

- name: Add Go to PATH
run: export PATH=$PATH:$GOPATH/bin

- name: Install API dependencies
working-directory: modules/api
run: go mod download
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
check-latest: true
cache-dependency-path: modules/api/go.sum

- name: Add Go to PATH
run: export PATH=$PATH:$GOPATH/bin

- name: Install API dependencies
working-directory: modules/api
run: go mod download
Expand Down Expand Up @@ -83,6 +86,9 @@ jobs:
check-latest: true
cache-dependency-path: modules/api/go.sum

- name: Add Go to PATH
run: export PATH=$PATH:$GOPATH/bin

- name: Install API dependencies
working-directory: modules/api
run: go mod download
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ on:
permissions:
contents: read
env:
GOPATH: /home/runner/go/
GOPROXY: https://proxy.golang.org
NG_CLI_ANALYTICS: ci
NODE_OPTIONS: "--max-old-space-size=8192"
TERM: xterm
Expand Down Expand Up @@ -109,6 +107,9 @@ jobs:
check-latest: true
cache-dependency-path: modules/api/go.sum

- name: Add Go to PATH
run: export PATH=$PATH:$GOPATH/bin

- name: Install API dependencies
working-directory: modules/api
run: go mod download
Expand Down

0 comments on commit 5389cce

Please sign in to comment.