Skip to content

Commit 1a4aab2

Browse files
committed
try update release
1 parent 023fbfe commit 1a4aab2

File tree

6 files changed

+19
-18
lines changed

6 files changed

+19
-18
lines changed

.github/workflows/node-prerelease.js.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
token: ${{ secrets.GITHUB_TOKEN }}
5959
allow_override: true
6060
gzip: false
61+
prerelease: true
6162
tag: ${{ env.VERSION }}
6263
files: ./linux-all-casaos-${{ env.VERSION }}.tar.gz
6364
# - name: '刷新缓存 Refresh The Cache'

.github/workflows/node-release.js.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: Node.js release CI
22

3-
on:
4-
push:
5-
# tags:
6-
# - v*
7-
branches:
8-
- 'main'
9-
- 'releases/**'
3+
#on:
4+
# push:
5+
# # tags:
6+
# # - v*
7+
# branches:
8+
# - 'main'
9+
# - 'releases/**'
10+
# - 'dev**-ezreal'
1011
# pull_request:
1112
# branches: [ "dev-0.3.6-ezreal", "main" ]
1213
jobs:
@@ -56,7 +57,6 @@ jobs:
5657
token: ${{ secrets.GITHUB_TOKEN }}
5758
allow_override: true
5859
gzip: false
59-
prerelease: true
6060
tag: v${{ steps.version.outputs.value }}
6161
files: ./linux-all-casaos-v${{ steps.version.outputs.value }}.tar.gz
6262
# - name: '刷新缓存 Refresh The Cache'

.github/workflows/node.js.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33

44
name: Node.js CI
55

6-
on:
7-
push:
8-
# tags:
9-
# - v*.*.*
10-
branches: [ "main" ]
11-
# pull_request:
12-
# branches: [ "dev-0.3.6-ezreal", "main" ]
6+
#on:
7+
# push:
8+
# # tags:
9+
# # - v*.*.*
10+
# branches: [ "main" ]
11+
# # pull_request:
12+
# # branches: [ "dev-0.3.6-ezreal", "main" ]
1313

1414
jobs:
1515
build:

src/assets/img/widgets/gradient.png

-12.9 KB
Loading

src/components/Apps/AppCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default {
128128
*/
129129
openApp(item) {
130130
if (!this.isCasa) {
131-
this.$emit("importApp", item.id, item.state, false)
131+
this.$emit("importApp", item, false)
132132
return false
133133
}
134134
if (item.type === "system") {

src/components/Apps/AppSection.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export default {
286286
await this.showExternalLinkPanel(item)
287287
return
288288
}
289-
let status = item.status
289+
let state = item.state
290290
let id = item.id
291291
const networks = await this.$api.container.getNetworks();
292292
const memory = this.$store.state.hardwareInfo.mem;
@@ -313,7 +313,7 @@ export default {
313313
id: id,
314314
state: "update",
315315
isCasa: isCasa,
316-
runningStatus: status,
316+
runningStatus: state,
317317
configData: configData,
318318
settingData: ret.data.data
319319
}

0 commit comments

Comments
 (0)