Skip to content

Commit

Permalink
ci(release): push minor version correctly
Browse files Browse the repository at this point in the history
Seems there was a mistake in the push major/minor tags step. It
attempted to push the tag v3 instead of v1.3 when releasing version
1.3.0.
  • Loading branch information
korthout committed May 29, 2023
1 parent ba3356f commit b9f8a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
if: ${{ inputs.dryRun == false }}
run: |
git push origin v${{ steps.version.outputs.major }} --force
git push origin v${{ steps.version.outputs.minor }} --force
git push origin v${{ steps.version.outputs.major }}.${{ steps.version.outputs.minor }} --force
- name: Update release-next-preview workflow
uses: jacobtomlinson/gha-find-replace@v3
Expand Down

0 comments on commit b9f8a0a

Please sign in to comment.