Skip to content

Commit 5229067

Browse files
committed
fix(ci): GOBIN
1 parent f17d8fe commit 5229067

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/gno-fmt.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141

4242
- name: Build gno
4343
working-directory: gno-repo
44-
run: make install
44+
run: |
45+
make install
46+
echo "$GOBIN" >> $GITHUB_PATH
4547
4648
- name: Format
4749
working-directory: realms

.github/workflows/gno-lint.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040

4141
- name: Build gno
4242
working-directory: gno-repo
43-
run: make install
43+
run: |
44+
make install
45+
echo "$GOBIN" >> $GITHUB_PATH
4446
4547
- name: Lint
4648
working-directory: realms

.github/workflows/gno-test.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040

4141
- name: Build gno
4242
working-directory: gno-repo
43-
run: make install
43+
run: |
44+
make install
45+
echo "$GOBIN" >> $GITHUB_PATH
4446
4547
- name: Test
4648
working-directory: realms

0 commit comments

Comments
 (0)