Skip to content

Commit 0b95739

Browse files
os-zhuangCopilot
andcommitted
chore(one): bump to 6.0.3 and tighten release artifact globs
- Bump version in tauri.conf.json and apps/objectos-one/package.json so installer filenames match the release tag. - Restrict upload-artifact + gh-release globs to known bundle extensions to avoid uploading .deb internals (control.tar.gz, data.tar.gz) and any stray bundles. Use *-setup.exe instead of bare *.exe, *.app.tar.gz instead of *.tar.gz, *.nsis.zip instead of *.zip. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 6da521d commit 0b95739

3 files changed

Lines changed: 8 additions & 11 deletions

File tree

.github/workflows/one.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,11 @@ jobs:
9696
name: objectos-one-${{ matrix.target }}
9797
path: |
9898
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.dmg
99-
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.app
100-
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.exe
99+
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*-setup.exe
101100
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.msi
102101
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.deb
103-
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.AppImage
104-
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.tar.gz
105-
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.zip
102+
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.app.tar.gz
103+
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.nsis.zip
106104
apps/objectos-one/src-tauri/target/${{ matrix.target }}/release/bundle/**/*.sig
107105
if-no-files-found: warn
108106

@@ -128,11 +126,10 @@ jobs:
128126
name: ObjectOS One ${{ github.ref_name }}
129127
files: |
130128
artifacts/**/*.dmg
131-
artifacts/**/*.exe
129+
artifacts/**/*-setup.exe
132130
artifacts/**/*.msi
133131
artifacts/**/*.deb
134-
artifacts/**/*.AppImage
135-
artifacts/**/*.tar.gz
136-
artifacts/**/*.zip
132+
artifacts/**/*.app.tar.gz
133+
artifacts/**/*.nsis.zip
137134
artifacts/**/*.sig
138135
artifacts/latest.json

apps/objectos-one/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectos/one",
3-
"version": "6.0.0",
3+
"version": "6.0.3",
44
"private": true,
55
"license": "AGPL-3.0",
66
"description": "ObjectOS One — all-in-one local distribution (Tauri shell + bundled Node runtime + DB).",

apps/objectos-one/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "ObjectOS",
4-
"version": "6.0.0",
4+
"version": "6.0.3",
55
"identifier": "ai.objectstack.objectos",
66
"build": {
77
"frontendDist": "../src",

0 commit comments

Comments
 (0)