From 7ae7fee462eb3671cfa640abff68366a3fbc902d Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 19 Jun 2021 09:51:25 -0700 Subject: [PATCH] Create ci-build.yml --- .github/workflow/ci-build.yml | 54 +++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflow/ci-build.yml diff --git a/.github/workflow/ci-build.yml b/.github/workflow/ci-build.yml new file mode 100644 index 0000000..7e311c4 --- /dev/null +++ b/.github/workflow/ci-build.yml @@ -0,0 +1,54 @@ +# 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' + 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