From e24370ee0e9974a16f4d05d3dd2e49f248cb1a8b Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 19 Jun 2021 09:54:01 -0700 Subject: [PATCH] Delete .github/workflow directory --- .github/workflow/ci-build.yml | 54 ----------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflow/ci-build.yml diff --git a/.github/workflow/ci-build.yml b/.github/workflow/ci-build.yml deleted file mode 100644 index 7e311c4..0000000 --- a/.github/workflow/ci-build.yml +++ /dev/null @@ -1,54 +0,0 @@ -# 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