Skip to content

Commit

Permalink
Fix quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
pkwarren committed Jul 15, 2024
1 parent 6f015f5 commit dd80b27
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Get buf version
shell: bash
run: |
echo BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version') >> $GITHUB_ENV
echo BUF_VERSION=$(go mod edit -json | jq -r ".Require.[] | select(.Path == \"github.com/bufbuild/buf\") | .Version") >> $GITHUB_ENV
- name: Install buf cli
run: |
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- name: Get buf version
shell: bash
run: |
echo BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version') >> $GITHUB_ENV
echo BUF_VERSION=$(go mod edit -json | jq -r ".Require.[] | select(.Path == \"github.com/bufbuild/buf\") | .Version") >> $GITHUB_ENV
- name: Install buf cli
run: |
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fetch_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Get buf version
shell: bash
run: |
echo BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version') >> $GITHUB_ENV
echo BUF_VERSION=$(go mod edit -json | jq -r ".Require.[] | select(.Path == \"github.com/bufbuild/buf\") | .Version") >> $GITHUB_ENV
- name: Install buf cli
run: |
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Get buf version
shell: bash
run: |
echo BUF_VERSION=$(go mod edit -json | jq -r '.Require.[] | select(.Path == "github.com/bufbuild/buf") | .Version') >> $GITHUB_ENV
echo BUF_VERSION=$(go mod edit -json | jq -r ".Require.[] | select(.Path == \"github.com/bufbuild/buf\") | .Version") >> $GITHUB_ENV
- name: Install buf cli
run: |
go install github.com/bufbuild/buf/cmd/buf@${BUF_VERSION}
Expand Down

0 comments on commit dd80b27

Please sign in to comment.