Skip to content

Commit 85342c1

Browse files
committed
fix: Reduce fixes to figure this out
1 parent c95e9f1 commit 85342c1

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/deploy-dev.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ jobs:
4242
run: npm install -g [email protected]
4343
- name: Deploy to dev
4444
run: |
45-
mkdir deploy
46-
cp config.yaml deploy/
47-
mv web deploy/
48-
cd deploy
49-
echo "{}" > package.json
50-
CLI_TARGET_USERNAME=${{ secrets.CLI_TARGET_USERNAME_DEV }} CLI_TARGET_PASSWORD='${{ secrets.HARPERDB_CLI_TARGET_PASSWORD_DEV }}' harperdb deploy target='${{ secrets.CLI_DEPLOY_TARGET_DEV }}' restart=true
45+
echo '{ "name": "fabric_ui", "private": true, "version": "0.0.0", "dependencies": {} }' > package.json
46+
rm -Rf node_modules
47+
rm -Rf src
48+
CLI_TARGET_USERNAME=${{ secrets.CLI_TARGET_USERNAME }} CLI_TARGET_PASSWORD='${{ secrets.HARPERDB_CLI_TARGET_PASSWORD }}' harperdb deploy target='${{ secrets.CLI_DEPLOY_TARGET }}' restart=true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ lerna-debug.log*
99

1010
node_modules
1111
dist
12+
deploy
1213
web
1314
dist-ssr
1415
*.local

0 commit comments

Comments
 (0)