-
Notifications
You must be signed in to change notification settings - Fork 3
48 lines (40 loc) · 1.7 KB
/
maven-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path
name: maven-deploy
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
comment:
# Friendly description to be shown in the UI instead of 'name'
description: 'Comment for deploy'
# Default value if no value is explicitly provided
default: 'Deploy SNAPSHOT from WEB UI'
# Input has to be provided for the workflow to run
required: true
jobs:
build:
runs-on: ubuntu-latest
# run only on main
if: (github.ref_name == 'main' && contains('["rombow","czenczl","speter555"]', github.actor))
steps:
# https://github.com/actions/checkout
- name: Checkout
uses: actions/checkout@v4
# https://github.com/actions/setup-java
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
# Maven script [ deploy ]
- name: Publish to GitHub Packages Apache Maven
run: mvn deploy -s $GITHUB_WORKSPACE/.github/.m2/settings.xml
env:
GITHUB_TOKEN: '${{ secrets.GH_TOKEN_TECHUSER_JAVA }}'
OSSRH_USERNAME: '${{ secrets.OSS_SONATYPE_ORG_USER }}'
OSSRH_PASSWORD: '${{ secrets.OSS_SONATYPE_ORG_PASSWORD }}'