From e87de81bd1f86a57bb7d59bcd82b56bd5548ded0 Mon Sep 17 00:00:00 2001 From: Patryk Andrzejewski Date: Wed, 28 Feb 2024 12:07:39 +0100 Subject: [PATCH] Fix instance name for manual workflow (#4697) * Fix instance name * Fix instance name --- .changeset/weak-pants-call.md | 5 +++++ .github/actions/prepare-api-variables/action.yml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/weak-pants-call.md diff --git a/.changeset/weak-pants-call.md b/.changeset/weak-pants-call.md new file mode 100644 index 00000000000..ee02e7f4b06 --- /dev/null +++ b/.changeset/weak-pants-call.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Fix instance name for manual workflow diff --git a/.github/actions/prepare-api-variables/action.yml b/.github/actions/prepare-api-variables/action.yml index 36002e62bb5..d1590468e41 100644 --- a/.github/actions/prepare-api-variables/action.yml +++ b/.github/actions/prepare-api-variables/action.yml @@ -55,7 +55,7 @@ runs: echo "BASE_URL=https://v${VERSION_SLUG}.staging.saleor.cloud/dashboard/" >> $GITHUB_OUTPUT echo "API_URL=https://v${VERSION_SLUG}.staging.saleor.cloud/graphql/" >> $GITHUB_OUTPUT echo "BASE_URL_DOMAIN=v${VERSION_SLUG}.staging.saleor.cloud" >> $GITHUB_OUTPUT - echo "POOL_NAME=${GITHUB_REF_SLUG} Staging" >> $GITHUB_OUTPUT + echo "POOL_NAME=${CURRENT_BRANCH} Staging" >> $GITHUB_OUTPUT echo "POOL_INSTANCE=https://v${VERSION_SLUG}.staging.saleor.cloud/" >> $GITHUB_OUTPUT echo "BACKUP_NAMESPACE=snapshot-automation-tests-${GITHUB_REF_SLUG}" >> $GITHUB_OUTPUT