Skip to content

Commit

Permalink
Fix MAJOR version auto-publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed Jan 9, 2023
1 parent f4a6f55 commit b2b66d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-git-release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ jobs:
uses: softprops/action-gh-release@v1
with: # See https://github.com/softprops/action-gh-release#-customizing
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: ${{steps.next_semantic_version.outputs.major}}
name: "${{steps.next_semantic_version.outputs.major}} latest release (auto-update)"
tag_name: "v${{steps.next_semantic_version.outputs.major}}"
name: "v${{steps.next_semantic_version.outputs.major}} latest release (auto-update)"
prerelease: false
generate_release_notes: true
files: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/auto-git-release-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ jobs:
uses: softprops/action-gh-release@v1
with: # See https://github.com/softprops/action-gh-release#-customizing
token: "${{ secrets.GITHUB_TOKEN }}"
tag_name: "${{steps.next_semantic_version.outputs.major}}-rc"
name: "${{steps.next_semantic_version.outputs.major}}-rc latest release (auto-update)"
tag_name: "v${{steps.next_semantic_version.outputs.major}}-rc"
name: "v${{steps.next_semantic_version.outputs.major}}-rc latest release (auto-update)"
prerelease: true
generate_release_notes: true
files: |
Expand Down

0 comments on commit b2b66d8

Please sign in to comment.