Skip to content

Commit

Permalink
refactor: expose secrets.json for devenv (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrekucci authored Jul 8, 2024
1 parent 6bb93c5 commit f63a404
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion infrastructure/nomad/playbooks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,13 @@
- name: Filter Artifacts for Upload
ansible.builtin.find:
paths: "{{ dist_dir }}"
patterns: "*{{ environments[env].version }}*.*"
patterns: >-
[
"*{{ environments[env].version }}*.*"
{% if env == 'devenv' %},
"secrets.json"
{% endif %}
]
recurse: yes
register: upload_artifacts
delegate_to: localhost
Expand Down

0 comments on commit f63a404

Please sign in to comment.