From 3cf273023a0dda27efcd3164bdfb51908dd46a5b Mon Sep 17 00:00:00 2001 From: Martin Beentjes Date: Mon, 3 Apr 2023 11:19:30 +0200 Subject: [PATCH] fix: readme had wrong value (#29) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d22bf43..6623d5b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ To use this action in your project, use the following: ```yaml - name: get-npm-version id: package-version - uses: martinbeentjes/npm-get-version-action@main + uses: martinbeentjes/npm-get-version-action@v1.3.1 ``` The Action sets an output variable called `current-version` which can be used in a following step by using `${{ steps.package-version.outputs.current-version}}`. @@ -19,7 +19,7 @@ If you are using a monorepo or otherwise have some packages in a subdirectory of ```yaml - name: get-npm-version id: package-version - uses: martinbeentjes/npm-get-version-action@v1.3.0 + uses: martinbeentjes/npm-get-version-action@v1.3.1 with: path: packages/ ```