Skip to content

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
eesoymilk committed May 19, 2024
1 parent 3de5306 commit bdb0537
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ jobs:
username: soymilk
key: ${{ secrets.KAMATERA_KEY }}
script: |
docker stop soybot || true
if [ $(docker ps -q -f name=soybot) ]; then
docker stop soybot
fi
docker pull ghcr.io/soymilk/soybot:latest
docker run -d \
--name soybot \
-e TOKEN=${{ secrets.TOKEN }} \
Expand Down

0 comments on commit bdb0537

Please sign in to comment.