From a2e19db70fefa649b4f3f6e63a6e740f71e46251 Mon Sep 17 00:00:00 2001 From: Malte Poll Date: Fri, 22 Apr 2022 17:34:21 +0200 Subject: [PATCH] Set workflow input correctly when building coreOS image manually Signed-off-by: Malte Poll --- .github/workflows/build-coreos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-coreos.yml b/.github/workflows/build-coreos.yml index 43917cd9b..c61167ddb 100644 --- a/.github/workflows/build-coreos.yml +++ b/.github/workflows/build-coreos.yml @@ -104,6 +104,6 @@ jobs: - name: "Build and Upload" run: > make -j$(nproc) CONTAINER_ENGINE=docker NETRC=/tmp/.netrc GCP_IMAGE_NAME="${{ env.IMAGE_TIMESTAMP }}" AZURE_IMAGE_NAME="${{ env.IMAGE_TIMESTAMP }}" - AZURE_IMAGE_DEFINITION="constellation-coreos" AZURE_IMAGE_VERSION="${{env.IMAGE_VERSION }}" COORDINATOR_URL="https://${{ secrets.PUBLIC_BUCKET_NAME }}.s3.us-east-2.amazonaws.com/coordinator/${{ inputs.coordinator-name }}" + AZURE_IMAGE_DEFINITION="constellation-coreos" AZURE_IMAGE_VERSION="${{env.IMAGE_VERSION }}" COORDINATOR_URL="https://${{ secrets.PUBLIC_BUCKET_NAME }}.s3.us-east-2.amazonaws.com/coordinator/${{ inputs.coordinator-name }}${{ github.event.inputs.coordinator-name }}" image-gcp image-azure upload-gcp upload-azure working-directory: ${{ env.working-directory }}