-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release prepared for 1.27.1-1 --------- Co-authored-by: smallsamantha <[email protected]> Co-authored-by: Samantha Small <[email protected]>
- Loading branch information
1 parent
6f83fc4
commit a9cf7d0
Showing
1 changed file
with
9 additions
and
9 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 |
---|---|---|
|
@@ -19,7 +19,7 @@ steps: | |
# Run `git checkout` | ||
- uses: actions/checkout@v2 | ||
# Install the `buf` CLI | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
# Ensure that `buf` is installed | ||
- run: buf --version | ||
``` | ||
|
@@ -47,7 +47,7 @@ If `version` is unspecified, the latest version of `buf` is installed: | |
steps: | ||
- uses: actions/checkout@v2 | ||
# Installs latest | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
- run: buf --version | ||
``` | ||
|
||
|
@@ -56,8 +56,8 @@ Use the `version` parameter to pin to a specific version: | |
```yaml | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# Installs version 1.27.1 | ||
- uses: bufbuild/[email protected] | ||
# Installs version 1.27.1-1 | ||
- uses: bufbuild/[email protected]-1 | ||
with: | ||
version: 1.27.1 | ||
# Should output 1.27.1 | ||
|
@@ -70,7 +70,7 @@ recommended: | |
```yaml | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
with: | ||
version: latest | ||
- run: buf --version | ||
|
@@ -83,7 +83,7 @@ This may prevent rate limit issues when running on GitHub hosted runners: | |
|
||
```yaml | ||
steps: | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
with: | ||
github_token: ${{ github.token }} | ||
``` | ||
|
@@ -95,7 +95,7 @@ you must still pass the token to the action: | |
|
||
```yaml | ||
steps: | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
``` | ||
|
@@ -106,7 +106,7 @@ If you are using Private [Remote Packages](https://docs.buf.build/bsr/remote-pac | |
|
||
```yaml | ||
steps: | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
with: | ||
buf_user: ${{ secrets.buf_user }} | ||
buf_api_token: ${{ secrets.buf_api_token }} | ||
|
@@ -163,7 +163,7 @@ steps: | |
# Run `git checkout` | ||
- uses: actions/checkout@v2 | ||
# Install the `buf` CLI | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/[email protected]-1 | ||
# Install `protoc` | ||
- uses: arduino/setup-protoc@v1 | ||
``` | ||
|