Skip to content

Commit

Permalink
BUGFIX: Need more error output
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffpatton1971 committed Jan 18, 2024
1 parent a823892 commit 349a3a6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All changes to this project should be reflected in this document.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


---

## [[0.0.1.5]](https://github.com/mod-posh/GetProjectVersion/releases/tag/v0.0.1.5) - 2024-01-18

BUGFIX: Need more error output

---

## [[0.0.1.4]](https://github.com/mod-posh/GetProjectVersion/releases/tag/v0.0.1.4) - 2024-01-18
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].4
uses: mod-posh/[email protected].5
with:
Filename: '"MyModule.psd1"'
verbose: 'verbose'
Expand Down
4 changes: 2 additions & 2 deletions getprojectversion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ try {

return $Version
} catch {
$_.InvocationInfo | Out-String;
throw $_.Exception.Message;
$_.InvocationInfo | ConvertTo-Json -d 9
throw $_.Exception;
}

0 comments on commit 349a3a6

Please sign in to comment.