Skip to content

Merge pull request #651 from UnitapApp/feature/telegram/implementation #15

Merge pull request #651 from UnitapApp/feature/telegram/implementation

Merge pull request #651 from UnitapApp/feature/telegram/implementation #15

Workflow file for this run

name: Deploy to Server
on:
push:
branches:
- develop
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Disable Host Key Checking
run: |
mkdir -p ~/.ssh
echo "StrictHostKeyChecking no" >> ~/.ssh/config
- name: Push to Server
run: |
git remote add dokku [email protected]:unitap-dev
git fetch --unshallow origin
git push dokku develop -f