Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/publish-protocol-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ jobs:
git add packages/protocol-core/package.json
git commit -m "chore(release): protocol-core v${VERSION} [skip ci]"
git tag "protocol-core/v${VERSION}"
git push origin HEAD --follow-tags
git push origin HEAD
git push origin "protocol-core/v${VERSION}"

- name: Get published version
id: version
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ jobs:
git add packages/sdk/package.json
git commit -m "chore(release): sdk v${VERSION} [skip ci]"
git tag "sdk/v${VERSION}"
git push origin HEAD --follow-tags
git push origin HEAD
git push origin "sdk/v${VERSION}"

- name: Get published version
id: version
Expand Down