Skip to content

Commit

Permalink
Merge pull request #505 from wkirschbaum/fix-gitlab-ci-doc
Browse files Browse the repository at this point in the history
Fix gitlab_ci cache files key example
  • Loading branch information
jeremyjh committed Jun 13, 2023
2 parents e955646 + a4457c7 commit 25717e5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/gitlab_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ build-dev:
stage: compile
cache:
- key:
files:
- .tool-versions
- mix.lock
files:
- .tool-versions
- mix.lock
paths:
- deps/
- _build/dev
Expand All @@ -39,9 +39,9 @@ dialyzer-plt:
- build-dev
cache:
- key:
files:
- .tool-versions
- mix.lock
files:
- .tool-versions
- mix.lock
paths:
- priv/plts
# Pull cache at start, push updated cache after completion
Expand All @@ -55,9 +55,9 @@ dialyzer-check:
- dialyzer-plt
cache:
- key:
files:
- .tool-versions
- mix.lock
files:
- .tool-versions
- mix.lock
paths:
- priv/plts
# Pull cache at start, don't push cache after completion
Expand Down

0 comments on commit 25717e5

Please sign in to comment.