generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (30 loc) · 920 Bytes
/
action.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
name: 'Publish Maven Artifact'
description:
'This action publishes a maven artifact from a local maven repository to a
remote repository.'
author: 'Team AppliedEnergistics'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'purple'
# Define your inputs here.
inputs:
local-repository-path:
description: 'The path to the local Maven repository to publish from'
required: true
remote-repository-url:
description: 'The URL to the remote Maven repository'
required: true
remote-repository-username:
description: 'Username for the remote repository'
required: false
remote-repository-password:
description: 'Password for the remote repository'
required: false
temp-dir:
description: 'The temp directory to use'
required: true
default: '${{ runner.temp }}'
runs:
using: node20
main: dist/index.js