From f621356959606ad3e198a52405eaf7dab67eb0ea Mon Sep 17 00:00:00 2001 From: marun Date: Mon, 15 Jul 2024 12:23:12 -0700 Subject: [PATCH] [antithesis] Fix image version separator in triggering workflows (#3191) --- .github/workflows/trigger-antithesis-avalanchego.yml | 4 ++-- .github/workflows/trigger-antithesis-xsvm.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/trigger-antithesis-avalanchego.yml b/.github/workflows/trigger-antithesis-avalanchego.yml index 23a972d778ae..6b5d2523535c 100644 --- a/.github/workflows/trigger-antithesis-avalanchego.yml +++ b/.github/workflows/trigger-antithesis-avalanchego.yml @@ -31,8 +31,8 @@ jobs: username: ${{ secrets.ANTITHESIS_USERNAME }} password: ${{ secrets.ANTITHESIS_PASSWORD }} github_token: ${{ secrets.ANTITHESIS_GH_PAT }} - config_image: antithesis-avalanchego-config@${{ github.event.inputs.image_tag || 'latest' }} - images: antithesis-avalanchego-workload@${{ github.event.inputs.image_tag || 'latest' }};antithesis-avalanchego-node@${{ github.event.inputs.image_tag || 'latest' }} + config_image: antithesis-avalanchego-config:${{ github.event.inputs.image_tag || 'latest' }} + images: antithesis-avalanchego-workload:${{ github.event.inputs.image_tag || 'latest' }};antithesis-avalanchego-node:${{ github.event.inputs.image_tag || 'latest' }} email_recipients: ${{ github.event.inputs.recipients || secrets.ANTITHESIS_RECIPIENTS }} additional_parameters: |- custom.duration=${{ github.event.inputs.duration || '0.5' }} diff --git a/.github/workflows/trigger-antithesis-xsvm.yml b/.github/workflows/trigger-antithesis-xsvm.yml index 02b52566eb69..1e17f9a3f046 100644 --- a/.github/workflows/trigger-antithesis-xsvm.yml +++ b/.github/workflows/trigger-antithesis-xsvm.yml @@ -31,8 +31,8 @@ jobs: username: ${{ secrets.ANTITHESIS_USERNAME }} password: ${{ secrets.ANTITHESIS_PASSWORD }} github_token: ${{ secrets.ANTITHESIS_GH_PAT }} - config_image: antithesis-xsvm-config@${{ github.event.inputs.image_tag || 'latest' }} - images: antithesis-xsvm-workload@${{ github.event.inputs.image_tag || 'latest' }};antithesis-xsvm-node@${{ github.event.inputs.image_tag || 'latest' }} + config_image: antithesis-xsvm-config:${{ github.event.inputs.image_tag || 'latest' }} + images: antithesis-xsvm-workload:${{ github.event.inputs.image_tag || 'latest' }};antithesis-xsvm-node:${{ github.event.inputs.image_tag || 'latest' }} email_recipients: ${{ github.event.inputs.recipients || secrets.ANTITHESIS_RECIPIENTS }} additional_parameters: |- custom.duration=${{ github.event.inputs.duration || '0.5' }}