initial commit
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 1m8s

This commit is contained in:
Lee
2024-04-14 17:45:04 +01:00
parent 2ca976841f
commit d1f6ff79a7
16 changed files with 5103 additions and 140 deletions

29
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,29 @@
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
# 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 }}