From 95ce0c70f4e1fad8e385fe06666bdd0d65223cef Mon Sep 17 00:00:00 2001 From: Petro Kurbatskyi <67897517+ibexa-yuna@users.noreply.github.com> Date: Wed, 6 Sep 2023 15:29:22 +0200 Subject: [PATCH] Changed parent in 4.6+ builds to headless (#234) --- .github/workflows/auto_tag.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto_tag.yml b/.github/workflows/auto_tag.yml index 17b4940..024c9a4 100644 --- a/.github/workflows/auto_tag.yml +++ b/.github/workflows/auto_tag.yml @@ -20,7 +20,7 @@ on: jobs: preparation: runs-on: ubuntu-latest - # This should allow parallel runs in a chain, e.g. OSS->Content->Experience->Commerce + # This should allow parallel runs in a chain, e.g. OSS->Headless->Experience->Commerce # whilst allowing Satis to process timeout-minutes: 30 @@ -42,12 +42,12 @@ jobs: # select(.version == "${{ env.V_VERSION }}"): filters the array to only include objects where the version property is equal to the value of the environment variable V_VERSION. # No need to validate for oss version in satis - - name: Validate satis for content version + - name: Validate satis for headless version if: github.event.repository.name == 'experience' env: SATIS_NETWORK_KEY: ${{ secrets.SATIS_NETWORK_KEY }} SATIS_NETWORK_TOKEN: ${{ secrets.SATIS_NETWORK_TOKEN }} - PARENT: ibexa/content + PARENT: ibexa/headless V_VERSION: v${{ inputs.version }} run: | for EXPONENTIAL_BACKOFF in {1..10}; do @@ -144,7 +144,7 @@ jobs: run: jq '.require["ibexa/oss"] |= "${{ inputs.version }}"' composer.json | sponge composer.json - name: Patch parent version for Experience if: github.event.repository.name == 'experience' - run: jq '.require["ibexa/content"] |= "${{ inputs.version }}"' composer.json | sponge composer.json + run: jq '.require["ibexa/headless"] |= "${{ inputs.version }}"' composer.json | sponge composer.json - name: Patch parent version for Commerce if: github.event.repository.name == 'commerce' run: jq '.require["ibexa/experience"] |= "${{ inputs.version }}"' composer.json | sponge composer.json