Skip to content
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.

Docs: update meta titles and descriptions #6

Docs: update meta titles and descriptions

Docs: update meta titles and descriptions #6

Workflow file for this run

name: 'build test deploy 1.x'
on:
push:
branches: [ '1.x' ]
jobs:
build:
runs-on: ubuntu-20.04
name: JDK ${{ matrix.java }}
strategy:
matrix:
java: [ 8, 11 ]
steps:
- name: Checkout...
uses: actions/checkout@v2
- name: Set up JDK...
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Retrieve mvn repo cache...
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: maven-${{ runner.os }}-1x-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-${{ runner.os }}-1x
- name: Build and test...
run: mvn clean verify
deploy:
needs: build
runs-on: ubuntu-20.04
steps:
- name: Checkout...
uses: actions/checkout@v2
# this action exports env.POM_VERSION variable
- name: Export Maven coordinates...
uses: bootique-tools/export-maven-coordinates-action@v1
- name: Set up JDK...
uses: actions/setup-java@v1
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
with:
java-version: 1.8
- name: Retrieve mvn repo cache...
uses: actions/cache@v2
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
with:
path: ~/.m2/repository
key: maven-${{ runner.os }}-1x-${{ hashFiles('**/pom.xml') }}
restore-keys: maven-${{ runner.os }}-1x
- name: Deploy...
run: mvn clean source:jar-no-fork javadoc:jar deploy -DskipTests --settings .github/workflows/maven_settings.xml
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}