Skip to content

Commit

Permalink
Merge pull request #19 from approvers/refactor
Browse files Browse the repository at this point in the history
fix(ci): typo
  • Loading branch information
raiga0310 authored Sep 9, 2023
2 parents 1b5f2ed + a4180d4 commit 8361b74
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release-created: ${{ steps.release-please-action.outputs.release-created }}
tag-name: ${{ steps.release-please-action.outputs.tag-name }}
release-created: ${{ steps.release-please-action.outputs.release_created }}
tag-name: ${{ steps.release-please-action.outputs.tag_name }}
version: ${{ steps.release-please-action.outputs.major }}.${{ steps.release-please-action.outputs.minor }}.${{ steps.release-please-action.outputs.patch }}
steps:
- name: release-please-action
Expand All @@ -25,6 +25,11 @@ jobs:
package-name: ${{ github.repository }}
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
- name: echo outputs
run: |
echo "release-created: ${{ steps.release-please-action.outputs.release_created }}"
echo "tag-name: ${{ steps.release-please-action.outputs.tag_name }}"
echo "version: ${{ steps.release-please-action.outputs.major }}.${{ steps.release-please-action.outputs.minor }}.${{ steps.release-please-action.outputs.patch }}"
release-package:
needs: release-please
Expand Down

0 comments on commit 8361b74

Please sign in to comment.