From dc54164e1a64b6a69c9aba298b25d25911d34a2d Mon Sep 17 00:00:00 2001 From: Patryk Andrzejewski Date: Tue, 22 Oct 2024 09:16:06 +0200 Subject: [PATCH] Use steps instead of needs (#5224) --- .changeset/loud-paws-notice.md | 5 +++++ .github/workflows/run-test-cron.yml | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/loud-paws-notice.md diff --git a/.changeset/loud-paws-notice.md b/.changeset/loud-paws-notice.md new file mode 100644 index 0000000000..17c2fac804 --- /dev/null +++ b/.changeset/loud-paws-notice.md @@ -0,0 +1,5 @@ +--- +"saleor-dashboard": patch +--- + +Now cron-workflow that runs e2e tests takes proper urls to for preparing accounts action diff --git a/.github/workflows/run-test-cron.yml b/.github/workflows/run-test-cron.yml index c0b0ae8641..6f1e548c8b 100644 --- a/.github/workflows/run-test-cron.yml +++ b/.github/workflows/run-test-cron.yml @@ -67,8 +67,8 @@ jobs: id: accounts uses: ./.github/actions/prepare-accounts with: - BASE_URL: ${{ needs.cloud_variables.outputs.BASE_URL }} - API_URL: ${{ needs.cloud_variables.outputs.API_URL }} + BASE_URL: ${{ steps.cloud_variables.outputs.BASE_URL }} + API_URL: ${{ steps.cloud_variables.outputs.API_URL }} E2E_USER_NAME: ${{ secrets.E2E_USER_NAME }} E2E_USER_PASSWORD: ${{ secrets.E2E_USER_PASSWORD }} E2E_ENCODE_PASS: ${{ secrets.E2E_ENCODE_PASS }}