Skip to content

Commit

Permalink
fix: fix pass-fast cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
ankorstore-haddowg committed Mar 10, 2023
1 parent 7c365d8 commit c9afc7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/pass-fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ steps:
- restore_cache:
name: Getting job history
keys:
- pass-{{ .Environment.CIRCLE_JOB }}-{{ .Environment.CIRCLE_NODE_INDEX }}-$CIRCLE_PIPELINE_ID
- pass-{{ .Environment.CIRCLE_JOB }}-{{ .Environment.CIRCLE_NODE_INDEX }}-<< parameters.pipeline-id >>
- run:
name: Restoring previous artifacts
environment:
Expand All @@ -50,6 +50,6 @@ steps:
command: << include(scripts/pass-fast/record.sh) >>
- save_cache:
name: Saving job success for this revision
key: pass-{{ .Environment.CIRCLE_JOB }}-{{ .Environment.CIRCLE_NODE_INDEX }}-$CIRCLE_PIPELINE_ID
key: pass-{{ .Environment.CIRCLE_JOB }}-{{ .Environment.CIRCLE_NODE_INDEX }}-<< parameters.pipeline-id >>
paths:
- .pass

0 comments on commit c9afc7c

Please sign in to comment.