There was an error while loading. Please reload this page.
1 parent 63c6b7c commit 6813673Copy full SHA for 6813673
2 files changed
.github/workflows/gen-node-proto.yml
@@ -16,6 +16,9 @@ on:
16
workflow_dispatch:
17
workflow_call:
18
19
+permissions:
20
+ contents: write
21
+
22
concurrency:
23
group: ${{ github.workflow }}-${{ github.sha }}
24
cancel-in-progress: false
@@ -44,6 +47,9 @@ jobs:
44
47
version: "25.1"
45
48
repo-token: ${{ secrets.GITHUB_TOKEN }}
46
49
50
+ - name: Install prost generators
51
+ run: cargo install protoc-gen-prost@0.3.1 protoc-gen-prost-serde@0.3.1
52
53
- name: generate JS stubs
54
run: ./generate_proto.sh
55
.github/workflows/node-builds.yml
@@ -3,7 +3,6 @@ name: Node FFI binding build and release
3
permissions:
4
id-token: write # Required for OIDC
5
contents: write # Required to create GH releases
6
- pull-requests: write # Required to interact with PRs
7
8
on:
9
0 commit comments