Skip to content

Fixed problem with e-ark validator #81

Fixed problem with e-ark validator

Fixed problem with e-ark validator #81

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/[email protected]
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 }}