ui-syncup 0.4.0-beta.1 → 0.4.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -68,6 +68,10 @@ jobs:
68
68
  working-directory: ./cli
69
69
  run: bun install --frozen-lockfile
70
70
 
71
+ - name: Build CLI
72
+ working-directory: ./cli
73
+ run: bun run build
74
+
71
75
  - name: Run semantic-release
72
76
  id: semantic
73
77
  uses: cycjimmy/semantic-release-action@16ca923e6ccbb50770c415a0ccd43709a8c5f7a4 # v4
@@ -79,8 +83,47 @@ jobs:
79
83
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80
84
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
81
85
 
86
+ docker-prerelease:
87
+ name: Build & Push Docker Image (pre-release)
88
+ runs-on: ubuntu-latest
89
+ needs: release
90
+ if: needs.release.outputs.new_release_published == 'true' && contains(needs.release.outputs.new_release_version, '-')
91
+ permissions:
92
+ contents: read
93
+ packages: write
94
+ steps:
95
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
96
+ with:
97
+ ref: ${{ needs.release.outputs.new_release_git_tag }}
98
+ persist-credentials: false
99
+
100
+ - name: Set up QEMU (for ARM cross-compilation)
101
+ uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
102
+
103
+ - name: Set up Docker Buildx
104
+ uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
105
+
106
+ - name: Log in to GHCR
107
+ uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
108
+ with:
109
+ registry: ghcr.io
110
+ username: ${{ github.actor }}
111
+ password: ${{ secrets.GITHUB_TOKEN }}
112
+
113
+ - name: Build and push pre-release image
114
+ uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
115
+ with:
116
+ context: .
117
+ push: true
118
+ platforms: linux/amd64,linux/arm64
119
+ tags: |
120
+ ghcr.io/bykhd/ui-syncup:beta
121
+ ghcr.io/bykhd/ui-syncup:v${{ needs.release.outputs.new_release_version }}
122
+ cache-from: type=gha
123
+ cache-to: type=gha,mode=max
124
+
82
125
  docker:
83
- name: Build & Push Docker Image (multi-arch)
126
+ name: Build & Push Docker Image
84
127
  runs-on: ubuntu-latest
85
128
  needs: release
86
129
  if: needs.release.outputs.new_release_published == 'true' && !contains(needs.release.outputs.new_release_version, '-')
package/CHANGELOG.md CHANGED
@@ -1,3 +1,35 @@
1
+ # [0.4.0-beta.2](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.1...v0.4.0-beta.2) (2026-03-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Remove manual changelog update instructions from versioning guide. ([d9cf394](https://github.com/BYKHD/ui-syncup/commit/d9cf3949c9c4a6700a40c0a85b4c06759bde96db))
7
+ * update image version comment to include `:beta` pre-release option ([142181b](https://github.com/BYKHD/ui-syncup/commit/142181b693dc26ddd398732f929f3140ac9720c1))
8
+
9
+
10
+ ### Features
11
+
12
+ * Separate Docker image builds into dedicated workflows for pre-release and stable versions. ([c28d1ad](https://github.com/BYKHD/ui-syncup/commit/c28d1adda4f584a067b202d35448fa4d1766a389))
13
+
14
+ # [0.4.0-beta.2](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.1...v0.4.0-beta.2) (2026-03-22)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * update image version comment to include `:beta` pre-release option ([142181b](https://github.com/BYKHD/ui-syncup/commit/142181b693dc26ddd398732f929f3140ac9720c1))
20
+
21
+
22
+ ### Features
23
+
24
+ * Separate Docker image builds into dedicated workflows for pre-release and stable versions. ([c28d1ad](https://github.com/BYKHD/ui-syncup/commit/c28d1adda4f584a067b202d35448fa4d1766a389))
25
+
26
+ # [0.4.0-beta.2](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.1...v0.4.0-beta.2) (2026-03-22)
27
+
28
+
29
+ ### Features
30
+
31
+ * Separate Docker image builds into dedicated workflows for pre-release and stable versions. ([c28d1ad](https://github.com/BYKHD/ui-syncup/commit/c28d1adda4f584a067b202d35448fa4d1766a389))
32
+
1
33
  # [0.4.0-beta.1](https://github.com/BYKHD/ui-syncup/compare/v0.3.14...v0.4.0-beta.1) (2026-03-21)
2
34
 
3
35
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.1",
3
+ "version": "0.4.0-beta.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "ui-syncup",
9
- "version": "0.4.0-beta.1",
9
+ "version": "0.4.0-beta.2",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@inquirer/prompts": "^8.0.0",
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.1",
3
+ "version": "0.4.0-beta.2",
4
4
  "description": "Self-host UI SyncUp with a single command",
5
5
  "bin": {
6
6
  "ui-syncup": "./dist/index.js"
@@ -22,7 +22,7 @@ name: ${COMPOSE_PROJECT_NAME:-ui-syncup}
22
22
 
23
23
  services:
24
24
  app:
25
- # Replace :latest with your desired version
25
+ # Replace :latest with your desired version or :beta for pre-releases
26
26
  image: ghcr.io/bykhd/ui-syncup:latest
27
27
  restart: always
28
28
  # By default, the app port is published directly to the host for standalone
@@ -68,22 +68,6 @@ This publishes a `1.2.3-beta.1` pre-release to npm under the `beta` dist-tag and
68
68
 
69
69
  ---
70
70
 
71
- ## Manual Steps Before Releasing
72
-
73
- Only **`src/config/changelog.ts`** requires a manual update before pushing. Add a new entry (newest first):
74
-
75
- ```typescript
76
- {
77
- version: '0.4.0',
78
- date: '2026-03-22',
79
- title: 'New Feature Release',
80
- description: 'Short summary.',
81
- changes: [
82
- { type: 'feature', text: 'Added X.' },
83
- { type: 'fix', text: 'Fixed Y.' }
84
- ]
85
- },
86
- ```
87
71
 
88
72
  Then commit and push:
89
73
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.1",
3
+ "version": "0.4.0-beta.2",
4
4
  "scripts": {
5
5
  "dev": "next dev",
6
6
  "dev:stack": "docker compose -f docker/compose.local.yml up -d && supabase start",