workflow update #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploying to VPS | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: SSH setup and run commands | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
key: ${{ secrets.SSH_KEY }} | |
username: ${{ secrets.SSH_USER }} | |
passphrase: ${{ secrets.SSH_PASSPHRASE }} | |
script: | | |
whoami | |
echo ${{ github.event.repository.name }} | |
cd ./deploy/${{ github.event.repository.name }} | |
git pull | |
docker rm --force ${{ github.event.repository.name }}-deploy | |
cd ../ | |
if test -f docker-compose.yml; then | |
docker compose build --quiet | |
docker compose up --detach | |
echo "Built and deployed container" | |
else | |
echo "Docker compose file not found" | |
docker build -t cyscomvit/${{ github.event.repository.name }}:latest --quiet . | |
docker run --detach --name ${{ github.event.repository.name }}-deploy cyscomvit/${{ github.event.repository.name }}:latest | |
fi | |
docker container prune --force && docker image prune --all --force |