Compare commits
6 Commits
e6cda3ad52
...
b804c7ba0a
Author | SHA1 | Date | |
---|---|---|---|
|
b804c7ba0a | ||
838d0c606a | |||
68464938a3 | |||
7c9890a8d5 | |||
80a34851a6 | |||
2e43b9b723 |
@ -9,11 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
## [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
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user