Skip to content

fix: correct formatting and add new origin to settings #18

fix: correct formatting and add new origin to settings

fix: correct formatting and add new origin to settings #18

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/ssh-agent@v0.5.3
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 dokku@70.34.210.129:unitap-dev
git fetch --unshallow origin
git push dokku develop -f