You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Dokku Github Action
v5.0
Deploy a master branch to your Dokku server.
This action will deploy the master brunch to your Dokku server via SSH.
To use the action simply add the following lines to your .github/workflows/main.yml
name: CD
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Dokku deploy
uses: vitalyliber/[email protected]
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
HOST: casply.com
PROJECT: kawaii
You'll need to provide some secrets to use the action.
- PRIVATE_KEY: Your SSH private key.
You'll need to provide some env to use the action.
- HOST: The host the action will SSH to run the git push command. ie,
your.site.com
. - PROJECT: The project is Dokku project name.
- PORT: Port of the sshd listen to,
22
is set by default.
You can optionally provide the following:
- FORCE_DEPLOY: Force push the project to dokku, e.g.
FORCE_DEPLOY=true
- HOST_KEY: The results of running
ssh-keyscan -t rsa $HOST
. Use this if you want to check that the host you're deploying to is the right one (e.g. has the same keys).
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.