release-action/action.yml

39 lines
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
runs:
using: 'composite'
steps:
- name: 'Download JReleaser'
2021-03-27 18:54:08 +00:00
shell: bash
run: |
2021-03-28 20:15:43 +00:00
echo "::group::📦 Download JReleaser"
JAR="jreleaser-tool-provider-${{ inputs.version }}.jar"
URL="https://github.com/jreleaser/jreleaser/releases/download/${{ inputs.version }}/$JAR"
java "${{ github.action_path }}/copy.java" $URL $JAR
java -jar $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
run: |
JAR="jreleaser-tool-provider-${{ inputs.version }}.jar"
2021-03-28 20:15:43 +00:00
echo "☕ java -jar $JAR ${{ inputs.arguments }}"
java -jar $JAR ${{ inputs.arguments }}