diff --git a/.github/workflows/cocogitto.yml b/.github/workflows/cocogitto.yml index 6536f45f0..cf4bea072 100644 --- a/.github/workflows/cocogitto.yml +++ b/.github/workflows/cocogitto.yml @@ -41,15 +41,14 @@ jobs: git-user-email: 'yoctoyotta1024@yahoo.com' # The version number is accessible as a github action output - - name: Print Version + - name: Print version run: "echo '${{ steps.release.outputs.version }}'" - name: Generate Changelog run: cog changelog --at ${{ steps.release.outputs.version }} -t remote > GITHUB_CHANGELOG.md - - name: Upload GitHub release + - name: Upload github release uses: softprops/action-gh-release@v2 with: body_path: GITHUB_CHANGELOG.md - repository: yoctoyotta1024/CLEO tag_name: ${{ steps.release.outputs.version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index b267044f7..b73481623 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## [v0.4.0](https://github.com/yoctoyotta1024/CLEO/compare/v0.3.2..v0.4.0) - 2024-05-02 +#### Features +- specify repo for release - ([8f215d2](https://github.com/yoctoyotta1024/CLEO/commit/8f215d2ee7fac864cd3435bcc52bbafe65b7a59b)) - clara.bayley + +- - - + +## [v0.3.2](https://github.com/yoctoyotta1024/CLEO/compare/v0.3.1..v0.3.2) - 2024-05-02 +#### Bug Fixes +- bad token - ([1d8e3a5](https://github.com/yoctoyotta1024/CLEO/commit/1d8e3a5d9ddac61719a792576e16efc785ef3131)) - clara.bayley +- minor changes to CI to try to make changelog release work - ([c48e2c0](https://github.com/yoctoyotta1024/CLEO/commit/c48e2c0169a36ba26e377a0c158155dcfd88ee1f)) - clara.bayley + +- - - + +## [v0.3.1](https://github.com/yoctoyotta1024/CLEO/compare/v0.3.0..v0.3.1) - 2024-05-02 +#### Bug Fixes +- test cocogitto working with changelog updates on version bump - ([bfa66d8](https://github.com/yoctoyotta1024/CLEO/commit/bfa66d85becf4725416edf73826d9c56f911ec8d)) - clara.bayley +#### Refactoring +- don't specify github token - ([9f69343](https://github.com/yoctoyotta1024/CLEO/commit/9f69343c6e0bb5056d567384b909c86b4431cc48)) - clara.bayley +- delete explicity repo and add explicit token - ([a4753b8](https://github.com/yoctoyotta1024/CLEO/commit/a4753b84492ea396126bd25b5be0d8667fea9c54)) - clara.bayley +- change repo name - ([a4aafb5](https://github.com/yoctoyotta1024/CLEO/commit/a4aafb56dd700940c1c4cb099e448f73cee2c9d8)) - clara.bayley +- attempt to fix changelog publication with repository spec - ([7695d91](https://github.com/yoctoyotta1024/CLEO/commit/7695d91ae3d9b89aca4cee6c354e2ee05c3b481f)) - clara.bayley +- correct changelog since v0.1.0 - ([5e0f721](https://github.com/yoctoyotta1024/CLEO/commit/5e0f721544d6a5c960dbc340b3b9af4b2e93e573)) - clara.bayley +- correct changelog since v0.1.0 - ([0aae8e9](https://github.com/yoctoyotta1024/CLEO/commit/0aae8e93723098b8d6e03637d2bfebb0e74c350f)) - clara.bayley + +- - - + ## [v0.3.0](https://github.com/yoctoyotta1024/CLEO/compare/v0.2.1..v0.3.0) - 2024-05-02 #### Bug Fixes - use remote template instead of full_hash to match cog.toml - ([8529c75](https://github.com/yoctoyotta1024/CLEO/commit/8529c750462fd50fdce2874b9e2fc601fb70f073)) - clara.bayley diff --git a/cog.toml b/cog.toml index ff0b50f28..8304d101e 100644 --- a/cog.toml +++ b/cog.toml @@ -13,8 +13,10 @@ post_package_bump_hooks = [] pre_bump_hooks = [ "echo 'bumping version from {{latest}} to {{version}}'" ] + post_bump_hooks = [ - "echo 'version bump done'" + "git push", + "echo 'bump done with chore commit for notes appended to changelog'", ] [git_hooks]