PIA-Servers/.gitea/workflows/ci.yml
Liam 9140dbc838
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 9s
pls work
2024-04-29 06:42:54 +01:00

32 lines
645 B
YAML

name: Deploy to Dokku
on:
push:
branches: ["master"]
paths-ignore:
- .gitignore
- README.md
- LICENSE
- servers.json
jobs:
docker:
strategy:
matrix:
arch: ["ubuntu-latest"]
runs-on: ${{ matrix.arch }}
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Deploy to Dokku
- name: Push to dokku
uses: dokku/github-action@master
with:
git_remote_url: "ssh://dokku@10.0.50.65:22/pia-servers"
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}