From f57fcdf87cf2572758e1a3dbb3dac5faa93d6609 Mon Sep 17 00:00:00 2001 From: Augustin Date: Wed, 7 Dec 2022 17:13:20 +0100 Subject: [PATCH] test/publish commands: always run update secrets (#20183) --- .github/workflows/publish-command.yml | 1 + .github/workflows/test-command.yml | 1 + .github/workflows/test-performance-command.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/publish-command.yml b/.github/workflows/publish-command.yml index 29c07a48cef4..93e0be8770f9 100644 --- a/.github/workflows/publish-command.yml +++ b/.github/workflows/publish-command.yml @@ -321,6 +321,7 @@ jobs: attempt_limit: 3 attempt_delay: 5000 in # ms - name: Update Integration Test Credentials after test run for ${{ github.event.inputs.connector }} + if: always() run: | source venv/bin/activate ci_credentials ${{ matrix.connector }} update-secrets diff --git a/.github/workflows/test-command.yml b/.github/workflows/test-command.yml index b24203d3be94..23ad125b5e51 100644 --- a/.github/workflows/test-command.yml +++ b/.github/workflows/test-command.yml @@ -132,6 +132,7 @@ jobs: attempt_limit: 3 attempt_delay: 10000 # in ms - name: Update Integration Test Credentials after test run for ${{ github.event.inputs.connector }} + if: always() run: | source venv/bin/activate ci_credentials ${{ github.event.inputs.connector }} update-secrets diff --git a/.github/workflows/test-performance-command.yml b/.github/workflows/test-performance-command.yml index 5e3f05563320..80c833549c2a 100644 --- a/.github/workflows/test-performance-command.yml +++ b/.github/workflows/test-performance-command.yml @@ -125,6 +125,7 @@ jobs: # Oracle expects this variable to be set. Although usually present, this is not set by default on Github virtual runners. TZ: UTC - name: Update Integration Test Credentials after test run for ${{ github.event.inputs.connector }} + if: always() run: | source venv/bin/activate ci_credentials ${{ github.event.inputs.connector }} update-secrets