Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Commit

Permalink
fix: correctly extend tags to builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Nov 23, 2024
1 parent c85b00f commit e3842d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/toolchain/src/tasks/deploy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,12 @@ async fn build_and_upload(
//
// Indicates the latest build to use for this environment. Used if not providing a client-side
// version.
let tags = HashMap::from([
let mut tags = HashMap::from([
(build::tags::VERSION.to_string(), version_name.to_string()),
(build::tags::CURRENT.to_string(), "true".to_string()),
]);
tags.extend(build.tags.clone());

let exclusive_tags = vec![
build::tags::VERSION.to_string(),
build::tags::CURRENT.to_string(),
Expand Down

0 comments on commit e3842d5

Please sign in to comment.