Skip to content

Commit

Permalink
ci: remove hyphens
Browse files Browse the repository at this point in the history
  • Loading branch information
arielvalentin committed Jan 14, 2024
1 parent 4ec4395 commit 0791fc7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ permissions:
pull-requests: write

jobs:
prepare-release:
prepare:
name: Process Release
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4.0.2

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

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

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

steps:
- name: Checkout Repository
Expand Down

0 comments on commit 0791fc7

Please sign in to comment.