From 3211ac86795938adc61d11af19be516599ca34fb Mon Sep 17 00:00:00 2001 From: Bernardo Guerreiro <39738771+bernardobridge@users.noreply.github.com> Date: Thu, 18 Jan 2024 17:35:03 +0000 Subject: [PATCH] ci(test): allow ECR_IMAGE_VERSION to be set on windows tests (#2432) --- .github/workflows/run-tests-windows.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/run-tests-windows.yml b/.github/workflows/run-tests-windows.yml index 663d493ec8..d7d55137a7 100644 --- a/.github/workflows/run-tests-windows.yml +++ b/.github/workflows/run-tests-windows.yml @@ -2,6 +2,9 @@ name: Run Windows tests on: workflow_dispatch: + inputs: + ECR_IMAGE_VERSION: + description: 'ECR image version' jobs: test: @@ -39,6 +42,7 @@ jobs: ARTILLERY_CLOUD_API_KEY: ${{ secrets.ARTILLERY_CLOUD_API_KEY_TEST }} GITHUB_REPO: ${{ github.repository }} GITHUB_ACTOR: ${{ github.actor }} + ECR_IMAGE_VERSION: ${{ inputs.ECR_IMAGE_VERSION || github.sha}} - name: Notify about failures if: failure() && github.ref == 'refs/heads/main' uses: 8398a7/action-slack@v3.15.1