Skip to content

Commons ip now working with version 2.2.0 #97

Commons ip now working with version 2.2.0

Commons ip now working with version 2.2.0 #97

Workflow file for this run

name: Snapshot
on:
push:
branches:
- "development"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Maven Action
uses: s4u/setup-maven-action@v1.7.0
with:
java-version: 17
java-distribution: temurin
maven-version: 3.9.4
- name: Cache
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Deploy Jar
run: mvn --batch-mode deploy -Djacoco.skip=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}