Skip to content

Commit

Permalink
ci: Fix Job Refs
Browse files Browse the repository at this point in the history
  • Loading branch information
arielvalentin committed Jan 14, 2024
1 parent 2a9add8 commit 4ec4395
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
- uses: google-github-actions/release-please-action@v4.0.2

outputs:
paths_released: ${{ steps.release.outputs.paths_released }}
paths_released: ${{ steps.prepare-release.outputs.paths_released }}

publish-release:
needs: prepare-release
name: Publish Gems
runs-on: ubuntu-latest
if: ${{ needs.release.outputs.paths_released != '[]'}}
if: ${{ needs.prepare-release.outputs.paths_released != '[]'}}

strategy:
fail-fast: false
max-parallel: 1
matrix:
path: ${{ fromJson(needs.release.outputs.paths_released) }}
path: ${{ fromJson(needs.prepare-release.outputs.paths_released) }}

steps:
- name: Checkout Repository
Expand Down

0 comments on commit 4ec4395

Please sign in to comment.