Skip to content

Commit ad6bb4e

Browse files
committed
cleanup workflows
1 parent eb8f4c1 commit ad6bb4e

2 files changed

Lines changed: 0 additions & 11 deletions

File tree

.github/workflows/maven-build.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,15 @@ jobs:
2424
distribution: [temurin]
2525

2626
steps:
27-
# Check out Git repository
2827
- name: Checkout code
2928
uses: actions/checkout@v2
3029

31-
# Set up environment with Java and Maven
3230
- name: Setup JDK
3331
uses: actions/setup-java@v2
3432
with:
3533
distribution: ${{ matrix.distribution }}
3634
java-version: ${{ matrix.java }}
3735
cache: 'maven'
3836

39-
# Build & verify
4037
- name: Build and verify
4138
run: mvn -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean verify
42-
43-
# Run code coverage check
44-
- name: Run code coverage check
45-
run: bash <(curl -s https://codecov.io/bash)

.github/workflows/maven-deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,21 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
# Check out Git repository
1817
- name: Checkout code
1918
uses: actions/checkout@v2
2019

21-
# Configure GIT
2220
- name: Configure GIT
2321
run: |
2422
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}"
2523
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
2624
27-
# Set up environment with Java and Maven
2825
- name: Setup JDK
2926
uses: actions/setup-java@v2
3027
with:
3128
distribution: temurin
3229
java-version: 8
3330
cache: 'maven'
3431

35-
# Build, deploy to ossrh
3632
- name: Build, verify, deploy
3733
env:
3834
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}

0 commit comments

Comments
 (0)