2024-04-14 16:45:04 +00:00
|
|
|
name: Deploy App
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["master"]
|
|
|
|
paths-ignore:
|
|
|
|
- .gitignore
|
|
|
|
- README.md
|
|
|
|
- LICENSE
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
arch: ["ubuntu-latest"]
|
|
|
|
runs-on: ${{ matrix.arch }}
|
|
|
|
|
|
|
|
# Steps to run
|
|
|
|
steps:
|
|
|
|
# Checkout the repo
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
2024-04-14 16:48:01 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2024-04-14 16:45:04 +00:00
|
|
|
|
|
|
|
# Deploy to Dokku
|
|
|
|
- name: Push to dokku
|
|
|
|
uses: dokku/github-action@master
|
|
|
|
with:
|
|
|
|
git_remote_url: "ssh://dokku@10.0.50.137:22/minecraft-utils-frontend"
|
|
|
|
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
|