Compare commits

...

6 Commits

Author SHA1 Message Date
cuddle-please
b804c7ba0a chore(release): 0.4.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-12-27 16:01:04 +00:00
838d0c606a fix: cuddle file test
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 17:00:34 +01:00
68464938a3 feat: add option
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:30:02 +01:00
7c9890a8d5 feat: use publish tag instead of bool
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:27:42 +01:00
80a34851a6 feat: add publish
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:19:43 +01:00
2e43b9b723 feat: update cuddle file
Some checks failed
continuous-integration/drone/push Build is failing
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-12-27 16:18:19 +01:00
3 changed files with 38 additions and 1 deletions

View File

@ -6,6 +6,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.4.0] - 2024-12-27
### Added
- add option
- use publish tag instead of bool
- add publish
- update cuddle file
- add release action
- remove deps
- remove ci
### Fixed
- cuddle file test
- release action like main and pr
- *(deps)* update rust crate chrono to v0.4.39
- *(deps)* update rust crate tracing to v0.1.41
### Other
- *(deps)* update rust crate serde_json to v1.0.134
- *(deps)* update rust crate serde to v1.0.216
- *(deps)* update rust crate clap to v4.5.23
- *(deps)* update all dependencies
- *(deps)* update rust crate serde_json to v1.0.133
## [0.3.0] - 2024-11-16
### Added

View File

@ -3,7 +3,7 @@ members = ["crates/*", "examples/*"]
resolver = "2"
[workspace.package]
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["kjuulh <contact@kjuulh.io>"]

View File

@ -56,9 +56,19 @@ pub struct CuddleVars {
pub service: String,
pub registry: String,
pub rust: Option<CuddleRustVars>,
pub clusters: Option<CuddleClusters>,
}
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct CuddleRustVars {
pub publish: Option<CuddleRustPublishVars>,
}
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct CuddleRustPublishVars {}
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
pub struct CuddleDeployment {
pub registry: String,
@ -168,6 +178,7 @@ scripts:
service: "infrastructure-example".into(),
registry: "kasperhermansen".into(),
clusters: Some(CuddleClusters(clusters)),
rust: None,
},
deployment: Some(crate::cuddle_file::CuddleDeployment {
registry: "git@git.front.kjuulh.io:kjuulh/clank-clusters".into(),
@ -215,6 +226,7 @@ components:
service: "infrastructure-example".into(),
registry: "kasperhermansen".into(),
clusters: None,
rust: None,
},
deployment: None,
components: Some(CuddleComponents {
@ -253,6 +265,7 @@ components:
service: "infrastructure-example".into(),
registry: "kasperhermansen".into(),
clusters: None,
rust: None,
},
deployment: None,
components: Some(CuddleComponents {