Skip to content

Commit

Permalink
Fix rc version tags + production description
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed Jan 9, 2023
1 parent b2b66d8 commit 807a860
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-git-release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
files: |
CHANGELOG.md
- name: Updating Git release tag for the major "${{steps.next_semantic_version.outputs.major}}" version
- name: Updating Git release tag for the major "v${{steps.next_semantic_version.outputs.major}}" version
uses: softprops/action-gh-release@v1
with: # See https://github.com/softprops/action-gh-release#-customizing
token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/auto-git-release-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
echo "previous_commit: ${{steps.next_semantic_version.outputs.previous_commit}}"
echo "current_commit: ${{steps.next_semantic_version.outputs.current_commit}}"
- name: Creating Git release tag for the ${{steps.next_semantic_version.outputs.version}} version
- name: Creating Git release tag for the "v${{steps.next_semantic_version.outputs.version}}" version
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.version}}
name: "Automatic release ${{steps.next_semantic_version.outputs.version}}"
tag_name: "v${{steps.next_semantic_version.outputs.version}}"
name: "Automatic release v${{steps.next_semantic_version.outputs.version}}"
prerelease: true
generate_release_notes: true
files: |
Expand All @@ -69,7 +69,7 @@ jobs:
files: |
CHANGELOG.md
- name: Updating Git release tag for the major "${{steps.next_semantic_version.outputs.major}}-rc" version
- name: Updating Git release tag for the major "v${{steps.next_semantic_version.outputs.major}}-rc" version
uses: softprops/action-gh-release@v1
with: # See https://github.com/softprops/action-gh-release#-customizing
token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down

0 comments on commit 807a860

Please sign in to comment.