Skip to content

Commit d4a2f68

Browse files
committed
bug fix: protoc not found in fabric-pkgs workflow
Signed-off-by: sandeep.nishad1 <[email protected]>
1 parent 8f58df6 commit d4a2f68

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy_fabric-pkgs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
working-directory: common/protos-js
3838

3939
- name: Build
40-
run: make build
40+
run: |
41+
export PATH="$PATH:${GITHUB_WORKSPACE}/protoc/bin"
42+
make build
4143
working-directory: common/protos-js
4244

4345
- name: Publish

0 commit comments

Comments
 (0)