add readme and update ci
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m14s
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m14s
This commit is contained in:
parent
8990a6308a
commit
3e2bcbe922
@ -1,32 +1,50 @@
|
|||||||
name: "ci"
|
name: Deploy App
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: ["master"]
|
||||||
- master
|
paths-ignore:
|
||||||
|
- .gitignore
|
||||||
|
- README.md
|
||||||
|
- LICENSE
|
||||||
|
- docker-compose.yml
|
||||||
|
- postman_collection.json
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: ["ubuntu-latest"]
|
||||||
|
git-version: ["2.44.0"]
|
||||||
|
java-version: ["17"]
|
||||||
|
maven-version: ["3.8.5"]
|
||||||
|
runs-on: ${{ matrix.arch }}
|
||||||
|
|
||||||
|
# Steps to run
|
||||||
steps:
|
steps:
|
||||||
- name: Cloning repo
|
# Checkout the repo
|
||||||
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up JDK 17 and Maven
|
# Setup Java and Maven
|
||||||
|
- name: Set up JDK and Maven
|
||||||
uses: s4u/setup-maven-action@v1.12.0
|
uses: s4u/setup-maven-action@v1.12.0
|
||||||
with:
|
with:
|
||||||
java-version: '17'
|
java-version: ${{ matrix.java-version }}
|
||||||
distribution: 'zulu'
|
distribution: "zulu"
|
||||||
maven-version: 3.8.5
|
maven-version: ${{ matrix.maven-version }}
|
||||||
|
|
||||||
|
# Run JUnit Tests
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: mvn --batch-mode test -q
|
run: mvn --batch-mode test -q
|
||||||
|
|
||||||
- name: Cloning repo
|
# Re-checkout to reset the FS before deploying to Dokku
|
||||||
|
- name: Checkout - Reset FS
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
# Deploy to Dokku
|
||||||
- name: Push to dokku
|
- name: Push to dokku
|
||||||
uses: dokku/github-action@master
|
uses: dokku/github-action@master
|
||||||
with:
|
with:
|
||||||
|
7
README.md
Normal file
7
README.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Minecraft Utilities API
|
||||||
|
|
||||||
|
Wrapper for the Minecraft APIs to make them easier to use.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
View the [documentation](https://mc.fascinated.cc/swagger-ui/index.html) or visit the [website](https://mc.fascinated.cc) for more information.
|
Loading…
Reference in New Issue
Block a user