From dc67a2ecd2b852ce58c68ac091828603f7b9fe79 Mon Sep 17 00:00:00 2001 From: David Hiendl Date: Fri, 20 Oct 2023 16:05:44 +0200 Subject: [PATCH] test actions --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 06eff2c..8b4c72f 100644 --- a/action.yml +++ b/action.yml @@ -39,6 +39,7 @@ outputs: runs: using: "composite" steps: + - id: branch run: | # "Set branch names..." @@ -72,6 +73,7 @@ runs: fi fi shell: bash + - id: current_branch run: | # "Set the current branch name..." @@ -91,6 +93,7 @@ runs: fi fi shell: bash + - id: default run: | # "Set the default branch name..." @@ -114,6 +117,7 @@ runs: fi fi shell: bash + - id: tag run: | # "Set the tag name..." @@ -136,6 +140,7 @@ runs: fi fi shell: bash + - id: ci_hostname run: | CI_HOSTNAME=$(echo $GITHUB_SERVER_URL | sed -e 's/[^/]*\/\/\([^@]*@\)\?\([^:/]*\).*/\2/')