Skip to content

Commit 0678267

Browse files
authored
Merge pull request #482 from docker/endpoint-build-reference-fix
Correct the GitHub Action environment variable reference
2 parents 773f9e5 + 7039eb6 commit 0678267

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181

182182
- name: Build for ${{ matrix.os }}-${{ matrix.arch }}
183183
run: |
184-
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} BUGSNAG_API_KEY=${{ secrets.BUGSNAG_API_KEY }} make build
184+
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
185185
186186
- uses: actions/upload-artifact@v4
187187
with:
@@ -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)