From e4de65790bcad8ff520d7cb2fb1147e06dc977bb Mon Sep 17 00:00:00 2001 From: Marco Ieni <11428655+MarcoIeni@users.noreply.github.com> Date: Fri, 22 Dec 2023 20:14:31 +0100 Subject: [PATCH] chore: format bash code --- action.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/action.yml b/action.yml index 445b98d..80afb37 100644 --- a/action.yml +++ b/action.yml @@ -83,13 +83,13 @@ runs: if [[ -z "${{ inputs.command }}" || "${{ inputs.command }}" == "release-pr" ]] then - echo "-- Running release-plz release-pr --" - release-plz release-pr\ - --git-token ${GITHUB_TOKEN}\ - --repo-url https://github.com/${GITHUB_REPOSITORY}\ - ${CONFIG_PATH}\ - ${ALT_REGISTRY}\ - ${PROJECT_MANIFEST} + echo "-- Running release-plz release-pr --" + release-plz release-pr\ + --git-token ${GITHUB_TOKEN}\ + --repo-url https://github.com/${GITHUB_REPOSITORY}\ + ${CONFIG_PATH}\ + ${ALT_REGISTRY}\ + ${PROJECT_MANIFEST} fi if [[ -z "${{ inputs.command }}" || "${{ inputs.command }}" == "release" ]] @@ -99,10 +99,10 @@ runs: echo "\$CARGO_REGISTRY_TOKEN environment variable is set to empty string. Please set your token in GitHub actions secrets. Docs: https://marcoieni.github.io/release-plz/github/index.html" exit 1 fi - echo "-- Running release-plz release --" - release-plz release\ - --git-token ${GITHUB_TOKEN}\ - ${CONFIG_PATH}\ - ${ALT_REGISTRY}\ - ${PROJECT_MANIFEST} + echo "-- Running release-plz release --" + release-plz release\ + --git-token ${GITHUB_TOKEN}\ + ${CONFIG_PATH}\ + ${ALT_REGISTRY}\ + ${PROJECT_MANIFEST} fi