Merge branch 'develop' #51
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy by SSH commands | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.KEY }} | |
port: ${{ secrets.PORT }} | |
script: | | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa_github_actions | |
cd /root/projects/orshuulagsha-ui | |
git pull origin master | |
cd docker | |
docker-compose build app | |
docker-compose up -d app | |
on-success-deploying: | |
needs: [ build ] | |
if: success() | |
runs-on: ubuntu-latest | |
steps: | |
- name: Detect git branch name | |
id: git-branch-name | |
uses: EthanSK/git-branch-name-action@v1 | |
- name: Send notification to Telegram Chats | |
uses: indiesdev/[email protected] | |
with: | |
url: https://ts3-telegram.aow.space/notifications | |
method: POST | |
accept: 200 | |
headers: '{ "Content-Type": "application/json" }' | |
body: '{ "message": "\nDeploy successful \n#deploy #successful\n\nRepository: `${{ github.repository }}`\nBranch: `${{ env.GIT_BRANCH_NAME }}`\nPusher: `${{ github.event.pusher.name }}`\n\nHead commit:\n`${{ github.event.head_commit.message }}`\n © `${{ github.event.pusher.name }}` in [commit](${{ github.event.head_commit.url }})", "receivers": ${{ secrets.DEV_TELEGRAM_CHATS }} }' |