Skip to content

Commit

Permalink
fix: split set outputs next release data 3
Browse files Browse the repository at this point in the history
  • Loading branch information
vincehi committed Jun 9, 2023
1 parent bbcbd77 commit d5cdb2c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Show notes
run: echo "${{ steps.get-next-release.outputs.next-release-notes }}"
run: echo "${{ needs.get-next-release.outputs.next-release-notes }}"
- name: Show gitTag
run: echo ${{ steps.get-next-release.outputs.next-release-git-tag }}
run: echo ${{ needs.get-next-release.outputs.next-release-git-tag }}
- name: Show version
run: echo ${{ steps.get-next-release.outputs.next-release-version }}
run: echo ${{ needs.get-next-release.outputs.next-release-version }}

- name: Rust setup
uses: dtolnay/rust-toolchain@stable
Expand All @@ -75,8 +75,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ steps.get-next-release.outputs.next-release-git-tag }}
releaseName: ${{ steps.get-next-release.outputs.next-release-version }}
releaseBody: ${{ steps.get-next-release.outputs.next-release-notes }}
tagName: ${{ needs.get-next-release.outputs.next-release-git-tag }}
releaseName: ${{ needs.get-next-release.outputs.next-release-version }}
releaseBody: ${{ needs.get-next-release.outputs.next-release-notes }}
releaseDraft: false
prerelease: true

0 comments on commit d5cdb2c

Please sign in to comment.