Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ jobs:
run: |
TAG="${{ github.event.release.tag_name }}"
VERSION="${TAG#v}"
MAJOR_MINOR="${VERSION%.*}"
NAME="validator-v${MAJOR_MINOR}-${{ matrix.goos }}-${{ matrix.goarch }}"
NAME="validator-v${VERSION}-${{ matrix.goos }}-${{ matrix.goarch }}"

if [ "${{ matrix.goos }}" = "windows" ]; then
zip "${NAME}.zip" validator.exe LICENSE README.md
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- Release binaries now include the full semver patch version in their filename (e.g., `validator-v2.2.2-linux-amd64.tar.gz` instead of `validator-v2.2-linux-amd64.tar.gz`), fixing package managers like aqua that expect full semver in artifact URLs (closes #514).
- TOML files with duplicate keys are now rejected as invalid (closes #504).
- Broken symlinks are reported as validation failures instead of aborting the run (closes #505)
- Repeating the same `--reporter` type with different output paths now writes each requested output.
Expand Down
Loading