Skip to content

Commit

Permalink
Merge pull request #16 from ARCv3/main
Browse files Browse the repository at this point in the history
FIX PIPELINES
  • Loading branch information
IzzyDotExe authored Oct 8, 2024
2 parents 3b6c5fd + ca30375 commit 4bc2aba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
username: ${{ secrets.SSH_USER }}
password: ${{ secrets.SSH_PASSWORD }}
port: ${{ secrets.SSH_PORT }}
script: cd ${{ vars.ENV }} && ./deploy.sh
script: cd ${{ vars.ENV }} && echo ${{ secrets.SSH_PASSWORD}} | sudo -S ./deploy.sh
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
username: ${{ secrets.SSH_USER }}
password: ${{ secrets.SSH_PASSWORD }}
port: ${{ secrets.SSH_PORT }}
script: cd ${{ vars.ENV }} && ./deploy.sh
script: cd ${{ vars.ENV }} && echo ${{ secrets.SSH_PASSWORD}} | sudo -S ./deploy-stg.sh
4 changes: 4 additions & 0 deletions deploy-stg.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
git pull
git submodule update
docker compose -f docker-compose-stg.yml build
docker compose -f docker-compose-stg.yml up -d

0 comments on commit 4bc2aba

Please sign in to comment.