publish on tag #51
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: KumuluzEE CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Build and test | |
| runs-on: 'ubuntu-latest' | |
| strategy: | |
| matrix: | |
| java-version: ['11', '17', '21'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK ${{ matrix.java-version }} | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| - name: Cache Maven packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Install | |
| run: mvn --show-version --update-snapshots --batch-mode clean install -DskipTests=true | |
| - name: Test | |
| run: mvn --batch-mode test | |
| publish: | |
| name: Publish to Maven Central | |
| runs-on: 'ubuntu-latest' | |
| needs: test | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Restore cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Restore GPG keys | |
| env: | |
| GPG_KEY: ${{ secrets.OSSRH_GPG_KEY }} | |
| GPG_PUB: ${{ secrets.OSSRH_GPG_PUB }} | |
| run: 'printf "$GPG_KEY" | base64 --decode > "$GITHUB_WORKSPACE/gpg.key" && printf "$GPG_PUB" | base64 --decode > "$GITHUB_WORKSPACE/gpg.pub" && gpg --batch --import "$GITHUB_WORKSPACE/gpg.pub" "$GITHUB_WORKSPACE/gpg.key"' | |
| - name: Publish to Maven Central | |
| env: | |
| MAVEN_CENTRAL_USER: ${{ secrets.MAVEN_CENTRAL_USER }} | |
| MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }} | |
| GPG_PASSPHRASE: ${{ secrets.OSSRH_GPG_PASSPHRASE }} | |
| run: mvn --batch-mode source:jar javadoc:jar deploy -Pdeploy -DskipTests=true --settings ./settings.xml; |