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

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.
@@ -12,6 +12,7 @@ jobs:
12
12
  quality:
13
13
  name: Quality Gate
14
14
  runs-on: ubuntu-latest
15
+ if: "!contains(github.event.head_commit.message, '[skip ci]')"
15
16
  permissions:
16
17
  contents: read
17
18
  steps:
@@ -68,6 +69,10 @@ jobs:
68
69
  working-directory: ./cli
69
70
  run: bun install --frozen-lockfile
70
71
 
72
+ - name: Build CLI
73
+ working-directory: ./cli
74
+ run: bun run build
75
+
71
76
  - name: Run semantic-release
72
77
  id: semantic
73
78
  uses: cycjimmy/semantic-release-action@16ca923e6ccbb50770c415a0ccd43709a8c5f7a4 # v4
@@ -79,8 +84,47 @@ jobs:
79
84
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
80
85
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
81
86
 
87
+ docker-prerelease:
88
+ name: Build & Push Docker Image (pre-release)
89
+ runs-on: ubuntu-latest
90
+ needs: release
91
+ if: needs.release.outputs.new_release_published == 'true' && contains(needs.release.outputs.new_release_version, '-')
92
+ permissions:
93
+ contents: read
94
+ packages: write
95
+ steps:
96
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
97
+ with:
98
+ ref: ${{ needs.release.outputs.new_release_git_tag }}
99
+ persist-credentials: false
100
+
101
+ - name: Set up QEMU (for ARM cross-compilation)
102
+ uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
103
+
104
+ - name: Set up Docker Buildx
105
+ uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
106
+
107
+ - name: Log in to GHCR
108
+ uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
109
+ with:
110
+ registry: ghcr.io
111
+ username: ${{ github.actor }}
112
+ password: ${{ secrets.GITHUB_TOKEN }}
113
+
114
+ - name: Build and push pre-release image
115
+ uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
116
+ with:
117
+ context: .
118
+ push: true
119
+ platforms: linux/amd64,linux/arm64
120
+ tags: |
121
+ ghcr.io/bykhd/ui-syncup:beta
122
+ ghcr.io/bykhd/ui-syncup:v${{ needs.release.outputs.new_release_version }}
123
+ cache-from: type=gha
124
+ cache-to: type=gha,mode=max
125
+
82
126
  docker:
83
- name: Build & Push Docker Image (multi-arch)
127
+ name: Build & Push Docker Image
84
128
  runs-on: ubuntu-latest
85
129
  needs: release
86
130
  if: needs.release.outputs.new_release_published == 'true' && !contains(needs.release.outputs.new_release_version, '-')
package/CHANGELOG.md CHANGED
@@ -1,3 +1,42 @@
1
+ # [0.4.0-beta.3](https://github.com/BYKHD/ui-syncup/compare/v0.4.0-beta.2...v0.4.0-beta.3) (2026-03-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * skip CI pipeline on semantic-release back-commits ([418cdbb](https://github.com/BYKHD/ui-syncup/commit/418cdbb1e1b293bfb2adeb223c36d40b38f30868))
7
+
8
+ # [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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Remove manual changelog update instructions from versioning guide. ([d9cf394](https://github.com/BYKHD/ui-syncup/commit/d9cf3949c9c4a6700a40c0a85b4c06759bde96db))
14
+ * update image version comment to include `:beta` pre-release option ([142181b](https://github.com/BYKHD/ui-syncup/commit/142181b693dc26ddd398732f929f3140ac9720c1))
15
+
16
+
17
+ ### Features
18
+
19
+ * Separate Docker image builds into dedicated workflows for pre-release and stable versions. ([c28d1ad](https://github.com/BYKHD/ui-syncup/commit/c28d1adda4f584a067b202d35448fa4d1766a389))
20
+
21
+ # [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)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * update image version comment to include `:beta` pre-release option ([142181b](https://github.com/BYKHD/ui-syncup/commit/142181b693dc26ddd398732f929f3140ac9720c1))
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
+
33
+ # [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)
34
+
35
+
36
+ ### Features
37
+
38
+ * Separate Docker image builds into dedicated workflows for pre-release and stable versions. ([c28d1ad](https://github.com/BYKHD/ui-syncup/commit/c28d1adda4f584a067b202d35448fa4d1766a389))
39
+
1
40
  # [0.4.0-beta.1](https://github.com/BYKHD/ui-syncup/compare/v0.3.14...v0.4.0-beta.1) (2026-03-21)
2
41
 
3
42
 
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "ui-syncup",
3
- "version": "0.4.0-beta.1",
3
+ "version": "0.4.0-beta.3",
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.3",
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.3",
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.3",
4
4
  "scripts": {
5
5
  "dev": "next dev",
6
6
  "dev:stack": "docker compose -f docker/compose.local.yml up -d && supabase start",