From 8280b635424dd221e88bcc09a66c4089cf2d3d1a Mon Sep 17 00:00:00 2001 From: Carlo Minotti <50220438+minottic@users.noreply.github.com> Date: Wed, 26 Oct 2022 15:47:03 +0200 Subject: [PATCH] Catch up latest master: `search-api` (#128) --- .github/workflows/scicat-search-api.yml | 31 +++++++++++++++++++ helm_configs/search-api/component-config.json | 6 ++++ helm_configs/search-api/config.json | 22 +++++++++++++ helm_configs/search-api/values.yaml | 18 +++++++++++ search-api | 2 +- 5 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 helm_configs/search-api/component-config.json create mode 100644 helm_configs/search-api/config.json diff --git a/.github/workflows/scicat-search-api.yml b/.github/workflows/scicat-search-api.yml index 0c945b3..2374439 100644 --- a/.github/workflows/scicat-search-api.yml +++ b/.github/workflows/scicat-search-api.yml @@ -37,15 +37,46 @@ jobs: submodule_commit: ${{ github.event.inputs.submodule_commit }} submodule: search-api + set_ci_vars: + if: (needs.check_changed.outputs.changed == 'true' && !needs.set_env.outputs.component) || needs.set_env.outputs.component == 'sa' + runs-on: ubuntu-latest + needs: + - check_changed + - set_env + outputs: + ciVars: ${{ steps.helm_vars.outputs.ciVars }} + + steps: + + - name: Checkout repository + uses: actions/checkout@v2 + with: + submodules: recursive + ref: ${{ needs.set_env.outputs.commit }} + + - name: Set helm vars + id: helm_vars + run: | + ciVars=$(cat <