From 18a3adce38de655627eb094c177926f935b3c172 Mon Sep 17 00:00:00 2001 From: Alexandre Alves Date: Fri, 8 Nov 2024 12:05:05 +0000 Subject: [PATCH] iterate --- .github/workflows/build-extension-charts.yml | 8 ++++---- .github/workflows/test-extension-workflows.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-extension-charts.yml b/.github/workflows/build-extension-charts.yml index cbe7306e084..2730a846018 100644 --- a/.github/workflows/build-extension-charts.yml +++ b/.github/workflows/build-extension-charts.yml @@ -14,7 +14,7 @@ on: type: string test_repo: required: false - type: string + type: boolean test_branch: required: false type: string @@ -36,7 +36,7 @@ jobs: actions: write contents: read steps: - - if: is_test == 'true' + - if: is_test == true name: Checkout (test flow) uses: actions/checkout@v4 with: @@ -44,7 +44,7 @@ jobs: ref: ${{ inputs.test_branch }} fetch-depth: 0 - - if: is_test != 'true' + - if: is_test != true name: Checkout (normal flow) uses: actions/checkout@v4 with: @@ -101,7 +101,7 @@ jobs: release: name: Release Build - if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || inputs.is_test != 'true' + if: github.ref_type == 'tag' || (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || inputs.is_test != true needs: build-extension-artifact runs-on: ubuntu-latest permissions: diff --git a/.github/workflows/test-extension-workflows.yml b/.github/workflows/test-extension-workflows.yml index 7372bfca2ea..077eac2e185 100644 --- a/.github/workflows/test-extension-workflows.yml +++ b/.github/workflows/test-extension-workflows.yml @@ -22,8 +22,8 @@ jobs: deployments: write pages: write with: - target_branch: 'gh-pages' - tagged_release: 'clock-0.3.2' - is_test: 'true' - test_repo: 'ui-plugin-examples' - test_branch: 'main' \ No newline at end of file + target_branch: gh-pages + tagged_release: clock-0.3.2 + is_test: true + test_repo: ui-plugin-examples + test_branch: main \ No newline at end of file