Skip to content

Commit

Permalink
don't stop on failed commands
Browse files Browse the repository at this point in the history
  • Loading branch information
akoskm committed Dec 18, 2023
1 parent 285ee93 commit 28b52d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
script: |
cd ~/saas
docker pull akoskm/saas:latest
docker stop saas_container
docker rm saas_container
docker stop saas_container || true
docker rm saas_container || true
docker run -d --name saas_container --env-file .env -p 4000:4000 akoskm/saas:latest

0 comments on commit 28b52d4

Please sign in to comment.