From 7ae7fee462eb3671cfa640abff68366a3fbc902d Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 19 Jun 2021 09:51:25 -0700 Subject: [PATCH 1/4] 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 From 3a80910bfc09ccc6551182c5f7afffb5f67bf7c4 Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 19 Jun 2021 09:53:17 -0700 Subject: [PATCH 2/4] Create main.yml --- .github/workflows/main.yml | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7e311c4 --- /dev/null +++ b/.github/workflows/main.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 From e24370ee0e9974a16f4d05d3dd2e49f248cb1a8b Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 19 Jun 2021 09:54:01 -0700 Subject: [PATCH 3/4] 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 From 3a08b3274c3b493b484e7bda5bd98e4818bb351a Mon Sep 17 00:00:00 2001 From: Cekis Date: Sat, 19 Jun 2021 09:59:34 -0700 Subject: [PATCH 4/4] Update main.yml --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7e311c4..1333899 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -28,7 +28,7 @@ jobs: - name: Setup JDK 11 uses: actions/setup-java@v2 with: - java-version: '11' + java-version: '11.0.2' distribution: 'adopt' - name: Build SWG-API using Maven