Skip to content

Commit

Permalink
Merge pull request #371 from sumukhballal/actions_release_fix
Browse files Browse the repository at this point in the history
Fix for action releases and changelog updates
  • Loading branch information
sumukhballal authored Sep 16, 2024
2 parents d812e8f + 36b0627 commit 1aa2f5c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,13 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MATRIX_DIST_ARGS: ${{ matrix.dist-args }}
MATRIX_INSTALL_DIST: ${{ matrix.install-dist }}
GITHUB_REF_NAME: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install cargo-dist
run: ${MATRIX_INSTALL_DIST}
run: ${{ matrix.install-dist }}
- name: Install Cross
# Pin cargo cross to a version that we know is working for us.
run: |
Expand Down
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.6...HEAD

## [0.4.6] - 2024-09-11
## [0.4.6] - 2024-09-16

### Changes

- Add support for vendor override files ([#344])
- Updated buildsys to add new 'build-all' target, reduce build time ([#345], [#357])
- CICD, workspace and doc improvements ([#353], [#354], [#355], [#358])
- Add support for partial lockfile validation & refactor lock interfaces ([#361], [#363])
- Add support for partial lockfile validation & refactor lock interfaces, improve logging ([#361], [#363], [#370])
- Update tough dependencies to latest versions ([#365])

- Drop variant argument for variant subcommands ([#369])
- Add support for publishing kits to repositories that do not share a name with the kit ([#372])

[#344]: https://github.com/bottlerocket-os/twoliter/pull/344
[#345]: https://github.com/bottlerocket-os/twoliter/pull/345
Expand All @@ -30,6 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#361]: https://github.com/bottlerocket-os/twoliter/pull/361
[#363]: https://github.com/bottlerocket-os/twoliter/pull/363
[#365]: https://github.com/bottlerocket-os/twoliter/pull/365
[#369]: https://github.com/bottlerocket-os/twoliter/pull/369
[#370]: https://github.com/bottlerocket-os/twoliter/pull/370
[#372]: https://github.com/bottlerocket-os/twoliter/pull/372

[0.4.6]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.5...v0.4.6

Expand Down

0 comments on commit 1aa2f5c

Please sign in to comment.