deploy: do not check host fingerprint #4
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 staging server | |
concurrency: | |
group: staging | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy to staging server | |
runs-on: self-hosted | |
environment: | |
name: staging | |
url: https://pre.innohassle.ru | |
steps: | |
- name: Deploy via SSH | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
script_stop: true # Stop script on error | |
script: | | |
cd ${{ secrets.REPOSITORY_ROOT }} | |
git reset --hard | |
git checkout ${{ github.ref_name }} | |
git pull | |
docker compose build | |
docker compose pull | |
docker compose up -d |