cicy-desktop 2.1.274 → 2.1.275
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.
|
@@ -110,7 +110,7 @@ jobs:
|
|
|
110
110
|
shell: bash
|
|
111
111
|
env:
|
|
112
112
|
CSC_IDENTITY_AUTO_DISCOVERY: "false"
|
|
113
|
-
GH_TOKEN: ${{
|
|
113
|
+
GH_TOKEN: ${{ github.token }}
|
|
114
114
|
CICY_OBFUSCATE: "1" # 发版混淆 JS(prebuild 主进程 + Vite 渲染层),仅 release CI
|
|
115
115
|
run: |
|
|
116
116
|
set -euo pipefail
|
|
@@ -136,7 +136,7 @@ jobs:
|
|
|
136
136
|
- name: Ensure draft GitHub release exists
|
|
137
137
|
shell: bash
|
|
138
138
|
env:
|
|
139
|
-
GH_TOKEN: ${{
|
|
139
|
+
GH_TOKEN: ${{ github.token }}
|
|
140
140
|
run: |
|
|
141
141
|
gh release create "${{ steps.meta.outputs.tag }}" \
|
|
142
142
|
--repo "cicy-ai/cicy-desktop" \
|
|
@@ -148,7 +148,7 @@ jobs:
|
|
|
148
148
|
- name: Build and publish PKG installers
|
|
149
149
|
shell: bash
|
|
150
150
|
env:
|
|
151
|
-
GH_TOKEN: ${{
|
|
151
|
+
GH_TOKEN: ${{ github.token }}
|
|
152
152
|
run: |
|
|
153
153
|
set -euo pipefail
|
|
154
154
|
VER="${{ steps.meta.outputs.version }}"
|
|
@@ -72,7 +72,7 @@ jobs:
|
|
|
72
72
|
# uploaded. Promoted to non-draft + latest in the final step.
|
|
73
73
|
shell: bash
|
|
74
74
|
env:
|
|
75
|
-
GH_TOKEN: ${{
|
|
75
|
+
GH_TOKEN: ${{ github.token }}
|
|
76
76
|
run: |
|
|
77
77
|
gh release create "${{ steps.meta.outputs.tag }}" \
|
|
78
78
|
--repo "cicy-ai/cicy-desktop" \
|
|
@@ -85,7 +85,7 @@ jobs:
|
|
|
85
85
|
# --publish always uploads .exe + latest.yml to the release created above.
|
|
86
86
|
shell: powershell
|
|
87
87
|
env:
|
|
88
|
-
GH_TOKEN: ${{
|
|
88
|
+
GH_TOKEN: ${{ github.token }}
|
|
89
89
|
CICY_OBFUSCATE: "1" # 发版混淆 JS(prebuild 主进程 + Vite 渲染层),仅 release CI
|
|
90
90
|
run: |
|
|
91
91
|
if (Test-Path dist) { Remove-Item -Recurse -Force dist }
|
|
@@ -176,7 +176,7 @@ jobs:
|
|
|
176
176
|
# existing clients will pick up the new version on its next poll.
|
|
177
177
|
shell: bash
|
|
178
178
|
env:
|
|
179
|
-
GH_TOKEN: ${{
|
|
179
|
+
GH_TOKEN: ${{ github.token }}
|
|
180
180
|
run: |
|
|
181
181
|
gh release edit "${{ steps.meta.outputs.tag }}" \
|
|
182
182
|
--repo "cicy-ai/cicy-desktop" \
|