This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-scoretracker/.gitea/workflows/deploy-api.yml

41 lines
952 B
YAML
Raw 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:15:58 +00:00
with:
fetch-depth: 0
# Setup Java and Maven
- name: Set up JDK and Maven
uses: s4u/setup-maven-action@v1.12.0
with:
java-version: ${{ matrix.java-version }}
distribution: "zulu"
maven-version: ${{ matrix.maven-version }}
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 }}