Skip to content

Commit 82cc23c

Browse files
committed
fix: adpot new system building
1 parent e052f55 commit 82cc23c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.woodpecker/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ steps:
2222
image: node:20
2323
when:
2424
- event: push
25-
volumes:
26-
- /var/run/docker.sock:/var/run/docker.sock
2725
commands:
26+
- apt update && apt install -y rsync
2827
- export $(cat /woodpecker/deploy.vault.env | xargs)
2928
- npm clean-install
3029
- /bin/bash ./.woodpecker/buildRelease.sh

index.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,13 @@ export default class ForeignInlineListPlugin extends AdminForthPlugin {
115115
name: `foreignInlineList_${this.foreignResource.resourceId}`,
116116
label: 'Foreign Inline List',
117117
virtual: true,
118-
showIn: [AdminForthResourcePages.show],
118+
showIn: {
119+
show: true,
120+
list: false,
121+
edit: false,
122+
create: false,
123+
filter: false,
124+
},
119125
components: {
120126
showRow: {
121127
file: this.componentPath('InlineList.vue'),

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"types": "dist/index.d.ts",
77
"type": "module",
88
"scripts": {
9-
"build": "tsc",
10-
"rollout": "tsc && rsync -av --exclude 'node_modules' custom dist/ && npm version patch && npm publish --access public",
9+
"build": "tsc && rsync -av --exclude 'node_modules' custom dist/",
1110
"prepare": "npm link adminforth"
1211
},
1312
"repository": {

0 commit comments

Comments
 (0)