23 lines
421 B
YAML
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 }}
|