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

This commit is contained in:
Lee
2024-04-23 03:22:31 +01:00
parent 926e7d5d0f
commit 82c9bb702a
21 changed files with 3511 additions and 4987 deletions

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

@ -0,0 +1,31 @@
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
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.118:22/paste-frontend"
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}