Files
hello-world/.gitea/workflows/dokku.yaml
Sérgio Rafael Siqueira f1ac733985
All checks were successful
deploy / deploy (push) Successful in 1m6s
fix branch
2025-04-14 22:58:21 -03:00

23 lines
424 B
YAML

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