From 54988b288df2e4bc52969350b8c5eb4f288587c7 Mon Sep 17 00:00:00 2001 From: Badisi Date: Wed, 1 May 2024 18:05:29 +0200 Subject: [PATCH] chore(ci): release --- .github/workflows/ci_release-please.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_release-please.yml b/.github/workflows/ci_release-please.yml index f87b1248..57a1fdb4 100644 --- a/.github/workflows/ci_release-please.yml +++ b/.github/workflows/ci_release-please.yml @@ -29,13 +29,13 @@ jobs: ci_publish: runs-on: ubuntu-latest needs: ci_release-please - if: ${{ needs.ci_release-please.outputs.release-outputs.releases_created }} + if: ${{ fromJson(needs.ci_release-please.outputs.release-outputs).releases_created == 'true' }} strategy: matrix: - path-released: ${{ needs.ci_release-please.outputs.release-outputs.paths_released }} + path-released: ${{ fromJson(needs.ci_release-please.outputs.release-outputs).paths_released }} steps: - name: Publish - if: ${{ needs.ci_release-please.outputs.release-outputs['${{ matrix.path-released }}--release_created'] }} + if: ${{ fromJson(needs.ci_release-please.outputs.release-outputs)['${{ matrix.path-released }}--release_created'] }} uses: ./.github/workflows/ci_job.yml with: working-directory: ${{ matrix.path-released }}