Skip to content

Commit

Permalink
Update FTP deployment workflow to run server in the background and ch…
Browse files Browse the repository at this point in the history
…ange server directory
  • Loading branch information
ix-benjaminm committed Oct 7, 2024
1 parent 39ab257 commit 06f7e9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: cd client && npm run build

- name: Start server
run: npm run start
run: nohup npm run start &

- name: Upload to FTP server
uses: SamKirkland/[email protected]
Expand All @@ -37,4 +37,4 @@ jobs:
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
local-dir: dist
server-dir: /httpdocs
server-dir: /

0 comments on commit 06f7e9f

Please sign in to comment.