Skip to content

Commit 2647309

Browse files
committed
chore: update release workflow to push specific version and tags
- Modified the GitHub Actions workflow to push the main branch and a specific ensemble version tag. - Added a command to push all tags to the remote repository for better version tracking.
1 parent 2985c0f commit 2647309

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release-melos-version.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,7 @@ jobs:
129129
--yes
130130
131131
- name: Push branch and tags
132-
run: git push origin main --follow-tags
132+
run: |
133+
git push origin main
134+
git push origin ensemble-v${{ steps.resolve-version.outputs.version }}
135+
git push origin --tags

0 commit comments

Comments
 (0)