Skip to content

Try to fix plausible #29

Try to fix plausible

Try to fix plausible #29

Workflow file for this run

name: Deployment
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Execute remote commands
uses: appleboy/ssh-action@v1.2.1
with:
host: ${{ secrets.DEPLOY_SSH_HOST }}
username: ${{ secrets.DEPLOY_SSH_USER }}
key: ${{ secrets.DEPLOY_SSH_KEY }}
script: |
cd stackorange
git pull origin main
git checkout main
docker compose up app -d --no-deps --build
docker system prune -af