From 3567d455a7a85cd1480dbc68e236134ec90b324b Mon Sep 17 00:00:00 2001 From: Edward Angert Date: Wed, 23 Apr 2025 16:13:13 -0400 Subject: [PATCH] docs: fix ssh coder example in testing-templates doc (#17550) from @NickSquangler and @angrycub on Slack Co-authored-by: EdwardAngert <17991901+EdwardAngert@users.noreply.github.com> --- docs/tutorials/testing-templates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/testing-templates.md b/docs/tutorials/testing-templates.md index c357228604..45250a6a71 100644 --- a/docs/tutorials/testing-templates.md +++ b/docs/tutorials/testing-templates.md @@ -105,7 +105,7 @@ jobs: coder create -t $TEMPLATE_NAME --template-version ${{ steps.name.outputs.version_name }} test-${{ steps.name.outputs.version_name }} --yes coder config-ssh --yes # run some example commands - coder ssh test-${{ steps.name.outputs.version_name }} -- make build + ssh coder.test-${{ steps.name.outputs.version_name }} -- make build - name: Delete the test workspace if: always()