Skip to content

Commit

Permalink
Merge branch 'feat/extend-cmd-program' into release/cmd-1.1.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
vCaisim committed Sep 27, 2024
2 parents e60560f + 99e8c32 commit f3373ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cmd/src/services/cache/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function createMeta({
paths,
ci,
}: {
config: Partial<CacheSetCommandConfig>;
config: CacheSetCommandConfig;
cacheId: string;
orgId: string;
paths: string[];
Expand Down
3 changes: 1 addition & 2 deletions packages/cmd/src/services/cache/set.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { debug, enableDebug } from "@debug";
import { omit } from "lodash";
import { createCache } from "../../api";
import { PRESETS } from "../../commands/cache/options";
import { getCacheCommandConfig } from "../../config/cache";
Expand Down Expand Up @@ -71,7 +70,7 @@ export async function handleSetCache() {
await handleMetaUpload({
meta: createMeta({
cacheId: result.cacheId,
config: omit(config.values, ["recordKey"]),
config: config.values,
ci,
orgId: result.orgId,
paths: uploadPaths,
Expand Down

0 comments on commit f3373ae

Please sign in to comment.