forked from MinecraftUtilities/Backend
31 lines
678 B
YAML
31 lines
678 B
YAML
name: "deploy"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Cloning repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up JDK 17 and Maven
|
|
uses: s4u/setup-maven-action@v1.7.0
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
maven-version: 3.8.5
|
|
|
|
- name: Run Tests
|
|
run: mvn --batch-mode test -q
|
|
|
|
- name: Push to dokku
|
|
uses: dokku/github-action@master
|
|
with:
|
|
git_remote_url: "ssh://dokku@10.0.50.137:22/minecraft-helper"
|
|
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} |