From 5aeac43c32a658496753bd3ed51cb256d1dda4fb Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Fri, 15 Dec 2023 06:03:51 -0700 Subject: [PATCH] testing --- action.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 4858786..93ad433 100644 --- a/action.yaml +++ b/action.yaml @@ -8,5 +8,9 @@ inputs: runs: using: composite steps: - - run: version - shell: ls -l + - run: Get jq + shell: apt update && apt install jq -y + - run: Get version from package.json + shell: export CURRENT_VERSION=$(jq -r .version package.json) + - run: Get tagged versions from git + shell: export PREVIOUS_VERSIONS=$(git tag -l)