Skip to content

If applied, this commit will update the client tangle service referen… #8

If applied, this commit will update the client tangle service referen…

If applied, this commit will update the client tangle service referen… #8

Workflow file for this run

name: Publish Maven to Package
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Build settings.xml file
uses: whelk-io/maven-settings-xml-action@v20
with:
servers: >
[
{
"id": "ossrh",
"username": "${{secrets.MVN_USERNAME}}",
"password": "${{secrets.MVN_PASSWORD}}"
}
]
- name: Deploy to Maven Repository
run: mvn clean deploy --no-transfer-progress