Merge pull request #13 from p0nch0d3v/development #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dokku deploy | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- "README.md" | |
jobs: | |
build: | |
if: ${{ false }} # disable for now | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Push to dokku | |
uses: dokku/github-action@master | |
with: | |
git_remote_url: ${{ secrets.REMOTE_URL }} | |
ssh_private_key: ${{ secrets.REMOTE_PRIVATE_KEY }} |