-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deploy: production server deployment only by manual run
- Loading branch information
1 parent
7d4b8e8
commit c89c293
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Deploy to production server | ||
|
||
concurrency: | ||
group: production | ||
cancel-in-progress: false | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy to production server | ||
runs-on: self-hosted | ||
environment: | ||
name: production | ||
url: https://innohassle.ru | ||
steps: | ||
- name: Deploy via SSH | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.SSH_HOST }} | ||
username: ${{ secrets.SSH_USERNAME }} | ||
key: ${{ secrets.SSH_KEY }} | ||
fingerprint: ${{ secrets.SSH_FINGERPRINT }} | ||
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 |