Skip to content

Commit

Permalink
Fix latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadorequest committed Jan 10, 2023
1 parent 59dea92 commit 7a013ba
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/auto-git-release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
run: |
gh release create ${{steps.next_semantic_version.outputs.version_tag}} \
--title "${{steps.next_semantic_version.outputs.version_tag}}" \
--latest \
--generate-notes \
--target $GITHUB_SHA
env:
Expand All @@ -74,7 +75,6 @@ jobs:
run: |
gh release create v${{steps.next_semantic_version.outputs.major}} \
--title "v${{steps.next_semantic_version.outputs.major}} MAJOR release (auto-updated)" \
--latest \
--generate-notes \
--target $GITHUB_SHA
env:
Expand All @@ -86,7 +86,6 @@ jobs:
run: |
gh release edit v${{steps.next_semantic_version.outputs.major}} \
--title "v${{steps.next_semantic_version.outputs.major}} MAJOR release (auto-updated)" \
--latest \
--target $GITHUB_SHA
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -107,7 +106,6 @@ jobs:
gh release create v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}} \
--title "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}} MINOR release (auto-updated)" \
--generate-notes \
--latest \
--target $GITHUB_SHA
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -118,7 +116,6 @@ jobs:
run: |
gh release edit v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}} \
--title "v${{steps.next_semantic_version.outputs.major}}.${{steps.next_semantic_version.outputs.minor}} MINOR release (auto-updated)" \
--latest \
--target $GITHUB_SHA
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 7a013ba

Please sign in to comment.