Skip to content

Commit d26f152

Browse files
committed
Correct the GitHub Action environment variable reference
We should be using vars instead of env. Signed-off-by: Remy Suen <remy.suen@docker.com>
1 parent cd32b8c commit d26f152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ jobs:
265265
266266
- name: Build for ${{ matrix.os }}-${{ matrix.arch }}
267267
run: |
268-
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} BUGSNAG_API_KEY=${{ secrets.BUGSNAG_API_KEY }} TELEMETRY_ENDPOINT=${{ env.TELEMETRY_ENDPOINT }} TELEMETRY_KEY=${{ secrets.TELEMETRY_KEY }} make build
268+
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} BUGSNAG_API_KEY=${{ secrets.BUGSNAG_API_KEY }} TELEMETRY_ENDPOINT=${{ vars.TELEMETRY_ENDPOINT }} TELEMETRY_KEY=${{ secrets.TELEMETRY_KEY }} make build
269269
270270
- name: Rename the binary to include the version number
271271
run: |

0 commit comments

Comments
 (0)