mirror of
https://github.com/cekis/swg-api
synced 2026-01-16 19:05:10 -05:00
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: CI
|
|
|
|
# Controls when the action will run.
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
push:
|
|
paths-ignore:
|
|
- 'dist/**'
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
# This workflow contains a single job called "build"
|
|
build:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-latest
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
steps:
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v2
|
|
|
|
# Runs a single command using the runners shell
|
|
- name: Setup JDK 11
|
|
uses: actions/setup-java@v2
|
|
with:
|
|
java-version: '11.0.2'
|
|
distribution: 'adopt'
|
|
|
|
- name: Build SWG-API using Maven
|
|
run: |
|
|
mvn --batch-mode --update-snapshots verify
|
|
|
|
- name: Move JAR file to dist dir
|
|
if: success()
|
|
run: |
|
|
rm dist/*.jar
|
|
mv target/*.jar dist
|
|
rm -R target
|
|
|
|
- name: Commit new /dist/ if needed
|
|
if: success()
|
|
run: |
|
|
if [[ "$(git status --porcelain)" != "" ]]; then
|
|
git config --global user.name 'Cekis'
|
|
git config --global user.email 'cekis@users.noreply.github.com'
|
|
git add -A
|
|
git commit -am "(auto) Updated Distribution"
|
|
git push
|
|
fi
|