We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a2e05f commit ce1e836Copy full SHA for ce1e836
.github/workflows/deploy-dev.yaml
@@ -42,13 +42,14 @@ jobs:
42
run: |
43
mkdir deploy
44
DEPLOY_ID=$(date +%s)
45
- mv web "deploy/$(DEPLOY_ID)"
+ echo "DEPLOY_ID=$DEPLOY_ID" >> $GITHUB_ENV
46
+ mv web "deploy/$DEPLOY_ID"
47
cd deploy
48
echo "{}" > package.json
49
mkdir node_modules
50
touch config.yaml
51
echo "static:" >> config.yaml
- echo " files: ${DEPLOY_ID}/**" >> config.yaml
52
+ echo " files: $DEPLOY_ID/**" >> config.yaml
53
echo " index: true" >> config.yaml
54
echo " extensions: ["html"]" >> config.yaml
55
CLI_TARGET_USERNAME=${{ secrets.CLI_TARGET_USERNAME_DEV }} CLI_TARGET_PASSWORD='${{ secrets.HARPERDB_CLI_TARGET_PASSWORD_DEV }}' pnpm harperdb deploy project=hdbms target='${{ secrets.CLI_DEPLOY_TARGET_DEV }}'
0 commit comments