Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
bbliem committed Oct 11, 2024
1 parent 60e3bd2 commit 7fd0438
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,17 @@ jobs:
project_id: watch-ui
build_id: ${{ needs.build.outputs.build_id }}
deployment_env: ${{ needs.build.outputs.deployment_env }}

deploy-dokku:
needs: [build, deploy]
runs-on: ubuntu-latest
steps:
- name: Push to dokku
uses: dokku/github-action@master
with:
# FIXME: Make configurable
# git_remote_url: 'ssh://[email protected]:22/watch-dev'
git_remote_url: 'ssh://[email protected]:22/watch-dev'
ssh_private_key: ${{ secrets.DOKKU_SSH_PRIVATE_KEY }}
# deploy_docker_image: ${{ github.repository }}:${{ github.sha }}
deploy_docker_image: ${{ needs.build.outputs.image }}:${{ needs.build.outputs.image_tag }}

0 comments on commit 7fd0438

Please sign in to comment.