release-action/action.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2021-03-27 18:54:08 +00:00
name: JReleaser
description: 'Release Java projects quickly and easily with JReleaser'
branding:
icon: 'archive'
color: 'gray-dark'
inputs:
version:
description: 'The version of JReleaser to download and execute.'
2021-03-27 18:54:08 +00:00
default: 'early-access'
required: true
arguments:
description: 'The command-line arguments to be passed to JReleaser.'
2021-03-27 18:54:08 +00:00
default: 'full-release'
required: true
2021-03-30 10:03:01 +00:00
working-directory:
required: true
default: ${{ github.workspace }}
description: 'The directory to change into.'
2021-03-27 18:54:08 +00:00
runs:
using: 'composite'
steps:
- name: 'Download JReleaser'
2021-03-27 18:54:08 +00:00
shell: bash
2021-03-30 10:03:01 +00:00
working-directory: ${{ inputs.working-directory }}
2021-03-27 18:54:08 +00:00
run: |
2021-03-28 20:15:43 +00:00
echo "::group::📦 Download JReleaser"
java "${{ github.action_path }}/copy.java" ${{ inputs.version }}
java -jar jreleaser-cli.jar --version
2021-03-27 18:54:08 +00:00
echo "::endgroup::"
- name: 'Execute JReleaser'
2021-03-27 18:54:08 +00:00
shell: bash
2021-03-30 10:03:01 +00:00
working-directory: ${{ inputs.working-directory }}
2021-03-27 18:54:08 +00:00
run: |
echo "☕ java -jar jreleaser-cli.jar ${{ inputs.arguments }}"
java -jar jreleaser-cli.jar ${{ inputs.arguments }}