Skip to content

Commit

Permalink
cleanup workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Jan 12, 2022
1 parent c182781 commit b7033ca
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,15 @@ jobs:
distribution: [temurin]

steps:
# Check out Git repository
- name: Checkout code
uses: actions/checkout@v2

# Set up environment with Java and Maven
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
cache: 'maven'

# Build & verify
- name: Build and verify
run: ./mvnw -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean verify
4 changes: 0 additions & 4 deletions .github/workflows/maven-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,21 @@ jobs:
runs-on: ubuntu-latest

steps:
# Check out Git repository
- name: Checkout code
uses: actions/checkout@v2

# Configure GIT
- name: Configure GIT
run: |
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}"
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
# Set up environment with Java and Maven
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 8
cache: 'maven'

# Build, deploy to ossrh
- name: Build, verify, deploy, generate site
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand Down

0 comments on commit b7033ca

Please sign in to comment.