From cb1da4e18657974e4e9b9450d6262234806c03ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Mal=C3=A9s?= <85952626+joaomper-TE@users.noreply.github.com> Date: Fri, 5 Jul 2024 09:52:14 +0100 Subject: [PATCH] Update release.yaml --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e4d39840..00417cbe 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -6,7 +6,7 @@ on: jobs: set-package-matrix: - # This action returns all sub-packages to be published, except the `thousandeyes-sdk-core`. + # This action returns all sub-packages to be published. # It thens exports the variable to matrix, so that the deployment job is run individually for each sub-package runs-on: ubuntu-latest outputs: @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v4 - id: packages run: | - FOLDERS_JSON=$(find . -maxdepth 1 -type d -name "thousandeyes-sdk-*" ! -name "thousandeyes-sdk-core"| cut -c 3- | jq -R -s -c 'split("\n")[:-1]') + FOLDERS_JSON=$(find . -maxdepth 1 -type d -name "thousandeyes-sdk-*" | cut -c 3- | jq -R -s -c 'split("\n")[:-1]') echo "packages=$FOLDERS_JSON" >> "$GITHUB_OUTPUT" deployment: if: github.event.pull_request.merged == true