From f11481d1fce15079bb7aeff45bd535982d03474f Mon Sep 17 00:00:00 2001 From: Sal Date: Sat, 12 Aug 2023 13:33:17 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40548c7..d826c4c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A GitHub action that determines if a tag exists in your repo. a string value of 'true' or 'false' ## Example usage - + ```yaml - uses: mukunku/tag-exists-action@v1.3.0 id: checkTag From ba9a1f625c9df6241731be3cf1173a428993f77e Mon Sep 17 00:00:00 2001 From: Sal Date: Sat, 12 Aug 2023 14:15:15 -0400 Subject: [PATCH 2/3] convert symlink to concrete file --- node_modules/.bin/uuid | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 120000 => 100644 node_modules/.bin/uuid diff --git a/node_modules/.bin/uuid b/node_modules/.bin/uuid deleted file mode 120000 index c3ec003..0000000 --- a/node_modules/.bin/uuid +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") - -case `uname` in - *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; -esac - -if [ -x "$basedir/node" ]; then - exec "$basedir/node" "$basedir/../uuid/dist/bin/uuid" "$@" -else - exec node "$basedir/../uuid/dist/bin/uuid" "$@" -fi diff --git a/node_modules/.bin/uuid b/node_modules/.bin/uuid new file mode 100644 index 0000000..c3ec003 --- /dev/null +++ b/node_modules/.bin/uuid @@ -0,0 +1,12 @@ +#!/bin/sh +basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") + +case `uname` in + *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;; +esac + +if [ -x "$basedir/node" ]; then + exec "$basedir/node" "$basedir/../uuid/dist/bin/uuid" "$@" +else + exec node "$basedir/../uuid/dist/bin/uuid" "$@" +fi From c20751a33688d90de0267c2e79fb16b55df87732 Mon Sep 17 00:00:00 2001 From: Sal Date: Sat, 12 Aug 2023 14:17:08 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d826c4c..40548c7 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ A GitHub action that determines if a tag exists in your repo. a string value of 'true' or 'false' ## Example usage - + ```yaml - uses: mukunku/tag-exists-action@v1.3.0 id: checkTag