Skip to content

Instantly share code, notes, and snippets.

@idoberko2
Created October 27, 2019 14:04
Show Gist options
  • Select an option

  • Save idoberko2/975eff5d4c000440aa7b69f353fc4554 to your computer and use it in GitHub Desktop.

Select an option

Save idoberko2/975eff5d4c000440aa7b69f353fc4554 to your computer and use it in GitHub Desktop.
Dokku deploy GitHub workflow
name: Deploy dokku
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- id: deploy
name: Deploy to dokku
uses: idoberko2/dokku-deploy-github-action@v1
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
dokku-host: 'my-dokku-host.com'
app-name: 'my-dokku-app'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment