secondary secondary secondary secondary secondary secondary secondary #12
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: Deploy | |
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# See the following link for documentation: | |
# https://github.com/marketplace/actions/dokku | |
- name: Push to hermes | |
uses: dokku/[email protected] | |
with: | |
ssh_private_key: ${{ secrets.HERMES_GLOBAL_DEPLOY_KEY }} | |
git_remote_url: ssh://[email protected]/cashflow | |
# force might feel risky, but there is no good reason why the server | |
# should ever not be a mirror of the deploy branch. And the errors we | |
# could get otherwise would probably be nasty to deal with | |
git_push_flags: --force |