From e04ed65b9118cfff0d23ac31e290bc8347c69252 Mon Sep 17 00:00:00 2001 From: Jeff Patton Date: Thu, 18 Jan 2024 00:13:09 -0600 Subject: [PATCH] BUGFIX: Outputs shoud be the same level as runs --- CHANGELOG.md | 6 ++++++ README.md | 2 +- action.yml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 979ea8e..2cda93f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), --- +## [[0.0.1.2]](https://github.com/mod-posh/GetProjectVersion/releases/tag/v0.0.1.2) - 2024-01-18 + +BUGFIX: Outputs shoud be the same level as runs + +--- + ## [[0.0.1.1]](https://github.com/mod-posh/GetProjectVersion/releases/tag/v0.0.1.1) - 2024-01-18 BUGFIX: Adjust indentation of outputs diff --git a/README.md b/README.md index f61ae39..b4627b7 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ There are a few different ways you could use this action; here is an example of ```yaml jobs: GetVersion: - uses: mod-posh/GetProjectVersion@v0.0.1.1 + uses: mod-posh/GetProjectVersion@v0.0.1.2 with: Filename: '"MyModule.psd1"' verbose: 'verbose' diff --git a/action.yml b/action.yml index 61cc402..3a483e2 100644 --- a/action.yml +++ b/action.yml @@ -31,5 +31,5 @@ runs: echo "::set-output name=Version::$Version" shell: pwsh id: GetProjectVersion - outputs: - version: ${{ steps.GetProjectVersion.outputs.Version }} +outputs: + version: ${{ steps.GetProjectVersion.outputs.Version }}