Skip to content

Commit

Permalink
fix: change bump refs to tag-release (#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
drodarie authored Aug 2, 2024
1 parent e4c194c commit 09ab71f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:

release:
runs-on: ubuntu-latest
needs: bump
needs: tag_release

steps:
- name: Create Github token
Expand All @@ -97,17 +97,17 @@ jobs:
uses: requarks/changelog-action@v1
with:
token: ${{ steps.app-token.outputs.token }}
fromTag: ${{ needs.bump.outputs.tag }}
toTag: ${{ needs.bump.outputs.old_tag }}
fromTag: ${{ needs.tag_release.outputs.tag }}
toTag: ${{ needs.tag_release.outputs.old_tag }}

- name: Create Release
uses: ncipollo/[email protected]
with:
allowUpdates: true
draft: false
makeLatest: true
tag: ${{ needs.bump.outputs.tag }}
name: ${{ needs.bump.outputs.tag }}
tag: ${{ needs.tag_release.outputs.tag }}
name: ${{ needs.tag_release.outputs.tag }}
body: ${{ steps.changelog.outputs.changes }}
token: ${{ steps.app-token.outputs.token }}

Expand Down

0 comments on commit 09ab71f

Please sign in to comment.