beatsaber-scoretracker/.gitea/workflows/deploy-api.yml

31 lines
654 B
YAML
Raw Permalink Normal View History

2024-08-01 05:00:57 +00:00
name: Deploy API
on:
push:
branches: ["master"]
2024-08-01 05:05:52 +00:00
paths: [".gitea/workflows/deploy-api.yml", "API/**"]
2024-08-01 05:00:57 +00:00
jobs:
docker:
strategy:
matrix:
2024-08-01 05:15:58 +00:00
java-version: ["17"]
maven-version: ["3.8.5"]
runs-on: ubuntu-latest
2024-08-01 05:02:27 +00:00
defaults:
run:
working-directory: "./API"
2024-08-01 05:00:57 +00:00
# Steps to run
steps:
# Checkout the repo
- name: Checkout
uses: actions/checkout@v4
2024-08-01 05:05:52 +00:00
2024-08-01 05:00:57 +00:00
# Deploy to Dokku
- name: Deploy to Dokku
uses: dokku/github-action@master
with:
git_remote_url: "ssh://dokku@10.0.50.136:22/bs-tracker"
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}