diff --git a/CHANGELOG.md b/CHANGELOG.md index 648c23cb..05c99936 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,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). +## [3.26.0] - 2023-10-24 + +### Changed +- Added publishing of `cray-sat` container image to `csm-docker` in Artifactory + as well as `sat-docker`. This is more consistent with other CSM builds. + ## [3.25.6] - 2023-10-18 ### Fixed diff --git a/Jenkinsfile.github b/Jenkinsfile.github index ded61869..0268a38b 100644 --- a/Jenkinsfile.github +++ b/Jenkinsfile.github @@ -1,7 +1,7 @@ /* * MIT License * - * (C) Copyright 2022 Hewlett Packard Enterprise Development LP + * (C) Copyright 2022-2023 Hewlett Packard Enterprise Development LP * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -72,6 +72,11 @@ pipeline { tag: env.VERSION, isStable: env.IS_STABLE ) + publishCsmDockerImage( + image: env.NAME, + tag: env.VERSION, + isStable: env.IS_STABLE + ) } } }