diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cda93f..6fedb19 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.3]](https://github.com/mod-posh/GetProjectVersion/releases/tag/v0.0.1.3) - 2024-01-18 + +BUGFIX: Outputs are not available in composite actions + +--- + ## [[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 diff --git a/README.md b/README.md index b4627b7..ed8ced8 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.2 + uses: mod-posh/GetProjectVersion@v0.0.1.3 with: Filename: '"MyModule.psd1"' verbose: 'verbose' diff --git a/action.yml b/action.yml index 3a483e2..e25539a 100644 --- a/action.yml +++ b/action.yml @@ -31,5 +31,3 @@ runs: echo "::set-output name=Version::$Version" shell: pwsh id: GetProjectVersion -outputs: - version: ${{ steps.GetProjectVersion.outputs.Version }}