Skip to content

Commit 160db17

Browse files
committed
fixed issue with env var in circle ci config file using jinja raw
1 parent af50e4e commit 160db17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{cookiecutter.app_name}}/.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
make
1515
- restore_cache:
1616
keys:
17-
- v1-{{ .Branch }}
17+
- {% raw %}v1-{{ .Branch }}{% endraw %}
1818
paths:
1919
- /caches/app.tar
2020
- run:
@@ -34,7 +34,7 @@ jobs:
3434
mkdir -p /caches
3535
docker save -o /caches/app.tar {{cookiecutter.docker_hub_username}}/{{cookiecutter.app_name}}
3636
- save_cache:
37-
key: v1-{{ .Branch }}-{{ epoch }}
37+
key: {% raw %}v1-{{ .Branch }}-{{ epoch }}{% endraw %}
3838
paths:
3939
- /caches/app.tar
4040
- run:

0 commit comments

Comments
 (0)