feat: Přidat možnost označit služby jako aktuálně nabízené a upravit … #40
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: Deploy To Server | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to ${{ secrets.SSH_HOST }} | |
uses: appleboy/ssh-action@master | |
with: | |
username: ${{ secrets.SSH_USER }} | |
host: ${{ secrets.SSH_HOST }} | |
port: ${{ secrets.SSH_PORT }} | |
key: ${{ secrets.SSH_KEY }} | |
script: | |
cd /var/www/petrvurm_cz && ./server_deploy.sh |