From 829fcc51035ed4f19f91c69d331c34fe7f02c3ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20S=C3=B6derberg?= Date: Tue, 14 Oct 2025 23:39:17 +0200 Subject: [PATCH] fix(push parameters): Added the missing git.user parameter to the GitHub action --- .github/workflows/publish-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-template.yaml b/.github/workflows/publish-template.yaml index 3400db5..972a123 100644 --- a/.github/workflows/publish-template.yaml +++ b/.github/workflows/publish-template.yaml @@ -48,7 +48,7 @@ jobs: - name: Create a test workspace run: | - coder create -t $TEMPLATE_NAME --template-version ${{ steps.name.outputs.version_name }} test-${{ steps.name.outputs.version_name }} --yes + coder create -t $TEMPLATE_NAME --template-version ${{ steps.name.outputs.version_name }} test-${{ steps.name.outputs.version_name }} --yes --parameter "username=TEST-GIT-NAME" - name: Delete the test workspace if: always()