File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 3535 run : |
3636 tag="${{ github.ref_name }}"
3737 body="Release $tag"
38- gh release create --draft "$tag" --title "$tag" --notes "$body" --generate-notes --prerelease
38+ gh release create --draft "$tag" --title "$tag" --notes "$body" --generate-notes
3939 gh release upload "${{ github.ref_name }}" packages/powersync/assets/powersync_db.worker.js
Original file line number Diff line number Diff line change 1+ # Preparing Release
2+
3+ Bump the version of the packages to be released using ` melos ` :
4+
5+ ```
6+ melos version
7+ ```
8+
9+ if melos does not pick up changes or does not bump the version correctly, you can manually version the packages using
10+
11+ ```
12+ melos version -V ${PACKAGE_NAME}:m.m.p
13+ for e.g melos version -V powersync:1.6.3
14+ ```
15+
16+ This will create a tag in the format of ${PACKAGE_NAME}-vm.m.p
17+
18+ ```
19+ e.g powersync-v1.6.4, powersync_attachments_helper-v0.6.3+1, etc.
20+ ```
21+
22+ # Perform Release
23+
24+ ```
25+ git push --follow-tags
26+ ```
You can’t perform that action at this time.
0 commit comments