Skip to content

Commit

Permalink
try update release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghengxin committed Sep 5, 2022
1 parent 023fbfe commit 1a4aab2
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
1 change: 1 addition & 0 deletions .github/workflows/node-prerelease.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
allow_override: true
gzip: false
prerelease: true
tag: ${{ env.VERSION }}
files: ./linux-all-casaos-${{ env.VERSION }}.tar.gz
# - name: '刷新缓存 Refresh The Cache'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/node-release.js.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Node.js release CI

on:
push:
# tags:
# - v*
branches:
- 'main'
- 'releases/**'
#on:
# push:
# # tags:
# # - v*
# branches:
# - 'main'
# - 'releases/**'
# - 'dev**-ezreal'
# pull_request:
# branches: [ "dev-0.3.6-ezreal", "main" ]
jobs:
Expand Down Expand Up @@ -56,7 +57,6 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
allow_override: true
gzip: false
prerelease: true
tag: v${{ steps.version.outputs.value }}
files: ./linux-all-casaos-v${{ steps.version.outputs.value }}.tar.gz
# - name: '刷新缓存 Refresh The Cache'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

name: Node.js CI

on:
push:
# tags:
# - v*.*.*
branches: [ "main" ]
# pull_request:
# branches: [ "dev-0.3.6-ezreal", "main" ]
#on:
# push:
# # tags:
# # - v*.*.*
# branches: [ "main" ]
# # pull_request:
# # branches: [ "dev-0.3.6-ezreal", "main" ]

jobs:
build:
Expand Down
Binary file modified src/assets/img/widgets/gradient.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Apps/AppCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default {
*/
openApp(item) {
if (!this.isCasa) {
this.$emit("importApp", item.id, item.state, false)
this.$emit("importApp", item, false)
return false
}
if (item.type === "system") {
Expand Down
4 changes: 2 additions & 2 deletions src/components/Apps/AppSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ export default {
await this.showExternalLinkPanel(item)
return
}
let status = item.status
let state = item.state
let id = item.id
const networks = await this.$api.container.getNetworks();
const memory = this.$store.state.hardwareInfo.mem;
Expand All @@ -313,7 +313,7 @@ export default {
id: id,
state: "update",
isCasa: isCasa,
runningStatus: status,
runningStatus: state,
configData: configData,
settingData: ret.data.data
}
Expand Down

0 comments on commit 1a4aab2

Please sign in to comment.