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