Files
hello-world/.gitea/workflows/dokku.yaml
Sérgio Rafael Siqueira b38c6e0b49
Some checks failed
deploy / deploy (push) Has been cancelled
add dokku deploy workflow
2025-04-14 22:53:24 -03:00

23 lines
421 B
YAML

---
name: "deploy"
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-24.04
steps:
- name: Cloning repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Push to dokku
uses: dokku/github-action@main
with:
git_remote_url: "ssh://dokku@sergio.run:3022/hello-world"
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}