-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setting up go before running CRIB (ensures GOBIN is in place) (#725)
this should fix the issue related to the crib executable not being found in PATH, as well as caching dependencies
- Loading branch information
1 parent
a1c64ab
commit 3c3b871
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"crib-deploy-environment": minor | ||
--- | ||
|
||
setting up go before running CRIB to ensure GOBIN is properly set |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,6 +139,11 @@ runs: | |
with: | ||
registries: ${{ inputs.aws-ecr-private-registry }} | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: "${{ github.workspace }}/crib/go.work" | ||
cache-dependency-path: "${{ github.workspace }}/crib/**/*.sum" | ||
|
||
- name: Setup Nix | ||
uses: smartcontractkit/.github/actions/setup-nix@4df907a307d91761c15cdff65e508145bdbcfca3 # [email protected] | ||
with: | ||
|