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/dokku-github-action@v3.0
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}
HOST: casply.com
PROJECT: kawaii
You'll need to provide some secrets to use the action.
- PRIVATE_KEY: Your SSH private key.
- PUBLIC_KEY: Your SSH public 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.
- BRANCH: Repository branch that should be used for deploy,
master
is set by default. - 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
The Dockerfile and associated scripts and documentation in this project are released under the MIT License.