We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 511c611 commit 52b3e09Copy full SHA for 52b3e09
.github/workflows/build-golang-ubuntu-buf.yaml
@@ -28,12 +28,12 @@ jobs:
28
with:
29
python-version: ${{ matrix.python3_version }}
30
31
+ # Download a release like https://github.com/bufbuild/buf/releases/download/v1.53.0/buf-Linux-x86_64
32
- name: Install buf
33
run: |
- BUF_VERSION=1.53.0
34
- curl -sSL \
35
- "https://github.githubassets.com/buf-v$BUF_VERSION-$(uname -s)-$(uname -m)" \
36
- -o /usr/local/bin/buf
+ BUF_VERSION="1.53.0"
+ BUF_URL="https://github.com/bufbuild/buf/releases/download/v1.53.0/buf-Linux-x86_64"
+ curl -sSL "$BUF_URL" -o /usr/local/bin/buf
37
chmod +x /usr/local/bin/buf
38
39
- name: Add buf to PATH
0 commit comments