Skip to content

Commit

Permalink
DEV-HTTPS Fix script path
Browse files Browse the repository at this point in the history
  • Loading branch information
IamGroooooot committed Aug 15, 2023
1 parent 1ed7c64 commit 9242fe1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

REPOSITORY=/home/ubuntu/modoco-backend

cd $REPOSITORY

yarn ci
4 changes: 4 additions & 0 deletions scripts/start_server.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

REPOSITORY=/home/ubuntu/modoco-backend

cd $REPOSITORY

yarn pm2:start:app
4 changes: 4 additions & 0 deletions scripts/stop_server.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#!/bin/bash

REPOSITORY=/home/ubuntu/modoco-backend

cd $REPOSITORY

yarn pm2:stop:app

0 comments on commit 9242fe1

Please sign in to comment.