Skip to content

Commit

Permalink
Merge pull request #100 from jerus-org/update-release-workflow
Browse files Browse the repository at this point in the history
👷 ci(circleci): integrate versioning in workflow
  • Loading branch information
jerusdp authored Jan 20, 2025
2 parents 53479fe + 9c65b45 commit 1efe21e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ parameters:
description: "If true, the success pipeline will be executed."

orbs:
toolkit: jerus-org/[email protected].0
toolkit: jerus-org/[email protected].4

executors:
rust-env:
Expand Down Expand Up @@ -110,11 +110,22 @@ workflows:
- toolkit/make_release:
requires:
- toolkit/save_next_version
pre-steps:
- attach_workspace:
at: /tmp/workspace
- run:
name: Set SEMVER based on next-version file
command: |
set +ex
export SEMVER=$(cat /tmp/workspace/next-version)
echo $SEMVER
echo "export SEMVER=$SEMVER" >> "$BASH_ENV"
context:
- release
- bot-check
ssh_fingerprint: << pipeline.parameters.fingerprint >>
min_rust_version: << pipeline.parameters.min-rust-version >>
when_use_workspace: false

- toolkit/no_release:
min_rust_version: << pipeline.parameters.min-rust-version >>
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
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).

## [Unreleased]

### Changed

- 👷 ci(circleci): integrate versioning in workflow(pr [#100])

## [0.3.12] - 2025-01-11

### Changed
Expand Down Expand Up @@ -294,6 +300,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#97]: https://github.com/jerus-org/named-colour/pull/97
[#98]: https://github.com/jerus-org/named-colour/pull/98
[#99]: https://github.com/jerus-org/named-colour/pull/99
[#100]: https://github.com/jerus-org/named-colour/pull/100
[Unreleased]: https://github.com/jerus-org/named-colour/compare/v0.3.12...HEAD
[0.3.12]: https://github.com/jerus-org/named-colour/compare/v0.3.11...v0.3.12
[0.3.11]: https://github.com/jerus-org/named-colour/compare/v0.3.10...v0.3.11
[0.3.10]: https://github.com/jerus-org/named-colour/compare/v0.3.9...v0.3.10
Expand Down

0 comments on commit 1efe21e

Please sign in to comment.