Add classification map for AEM 6.5 LTS SP1 #272
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI/CD | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git Clone | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK 1.8 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 1.8 | |
| server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml | |
| server-username: MAVEN_USERNAME # env variable for username in deploy | |
| server-password: MAVEN_PASSWORD # env variable for token in deploy | |
| - name: Adjust Git Config | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "GitHub Action" | |
| - name: Build Reactor with Maven | |
| if: github.ref != 'refs/heads/master' | |
| run: mvn -B clean install --file pom.xml | |
| - name: Build Site for Maven Plugin | |
| if: github.ref != 'refs/heads/master' | |
| run: mvn -B clean site --file aem-classification-maven-plugin/pom.xml | |
| - name: Deploy Reactor with Maven | |
| if: github.ref == 'refs/heads/master' | |
| run: mvn -B clean deploy --file pom.xml | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.OSSRH_TOKEN_USER }} | |
| MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN_PASSWORD }} | |
| - name: Build and Deploy Site for Maven Plugin | |
| if: github.ref == 'refs/heads/master' | |
| run: mvn -B clean site site:stage scm-publish:publish-scm -Dusername=kwin -Dpassword=${{ secrets.GITHUB_SITE_DEPLOY_TOKEN_KWIN }} --file aem-classification-maven-plugin/pom.xml |