Skip to content

Deploy

Deploy #6

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
server-id: repsy
server-username: REPSY_USER
server-password: REPSY_TOKEN
- name: Build with Maven
run: ./mvnw -B deploy --file pom.xml
env:
REPSY_USER: ${{ secrets.REPSY_USER }}
REPSY_TOKEN: ${{ secrets.REPSY_TOKEN }}