Skip to content

Commit

Permalink
Fix file path
Browse files Browse the repository at this point in the history
  • Loading branch information
umakantp committed Feb 15, 2025
1 parent 5b8ab7e commit 6ef0e6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-main-on-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: npm run build

- name: Stop the Server
uses: garygrossgarten/github-action-ssh@release
uses: garygrossgarten/github-action-ssh@0.8.0
with:
host: ${{ secrets.POSTFOO_SSH_HOST }}
port: ${{ secrets.POSTFOO_SSH_PORT }}
Expand All @@ -62,7 +62,7 @@ jobs:
command: cd /root/spiderman/postfoo-server; pm2 stop spiderman; pm2 delete spiderman; mkdir -p /root/spiderman/postfoo-server

- name: Deploy to DigitalOcean
uses: burnett01/rsync-deployments@7.0.1
uses: burnett01/rsync-deployments@7.0.2
with:
switches: -avzr --delete --checksum
remote_path: /root/spiderman/postfoo-server
Expand All @@ -72,7 +72,7 @@ jobs:
remote_key: ${{ secrets.POSTFOO_SSH_PKEY }}

- name: Start the Server
uses: garygrossgarten/github-action-ssh@release
uses: garygrossgarten/github-action-ssh@0.8.0
with:
host: ${{ secrets.POSTFOO_SSH_HOST }}
port: ${{ secrets.POSTFOO_SSH_PORT }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "PostFoo is project for tracking personal finance",
"main": "dist/index.js",
"scripts": {
"build:gql": "copyfiles src/**/*.{graphql} dist -u 1",
"build:gql": "copyfiles src/**/*.graphql dist -u 1",
"prebuild": "npm run build:gql",
"build": "tsc",
"build:incr": "tsc -p tsconfig.json --incremental --tsBuildInfoFile dist/tsbuildinfo",
Expand Down

0 comments on commit 6ef0e6c

Please sign in to comment.