Skip to content

Commit f931c25

Browse files
protoc rate limit remove (#412)
1 parent 1606b7a commit f931c25

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/buf-push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
go-version: ^1.16
3535
- name: Install Protoc
3636
uses: arduino/setup-protoc@v1
37+
with:
38+
repo-token: ${{ secrets.GITHUB_TOKEN }}
3739
- name: Install protobuf plugins
3840
run: |
3941
go install google.golang.org/protobuf/cmd/protoc-gen-go@latest

.github/workflows/build-wasm.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
- uses: actions/checkout@v3
3636
- name: Setup protoc
3737
uses: arduino/[email protected]
38+
with:
39+
repo-token: ${{ secrets.GITHUB_TOKEN }}
3840
- uses: jetli/[email protected]
3941
with:
4042
version: 'latest'

.github/workflows/release-wasm.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
packageVersion:
77
description: 'Version to build'
88
required: true
9-
default: ''
9+
default: '' # For beta release: v1.0.0-beta.N N=beta number https://kevinkreuzer.medium.com/publishing-a-beta-or-alpha-version-to-npm-46035b630dd7
1010
workflow_run:
1111
workflows: ["Release Platform Libraries"]
1212
branches: ["main", "v?.*"]
@@ -27,6 +27,8 @@ jobs:
2727
- uses: actions/[email protected]
2828
- name: Setup protoc
2929
uses: arduino/[email protected]
30+
with:
31+
repo-token: ${{ secrets.GITHUB_TOKEN }}
3032
- uses: jetli/[email protected]
3133
with:
3234
version: 'latest'

0 commit comments

Comments
 (0)