diff --git a/conda_smithy/templates/appveyor.yml.tmpl b/conda_smithy/templates/appveyor.yml.tmpl index 70cc5df77..09b2dd838 100644 --- a/conda_smithy/templates/appveyor.yml.tmpl +++ b/conda_smithy/templates/appveyor.yml.tmpl @@ -20,9 +20,11 @@ environment: # overridden in the matrix definition where appropriate. CONDA_PY: "27" - BINSTAR_TOKEN: - # Generated with "binstar auth --create --name appveyor -o conda-forge" and encrypted on ci.appveyor.com/tools/encrypt. - secure: wtylLGtp/ID3G3DFT2uxuLFXuijFqmxI6phj60izpNC3pxd585bR6k2oonf5iGGb + {%- for name, hashed_secure in appveyor.secure | dictsort %} + {{ name }}: + # The {{ name }} secure variable. This is defined canonically in conda-forge.yml. + - secure: {{ hashed_secure }} + {%- endfor %} matrix:{% for case in matrix | sort %} {{ matrix_env("x86", case) }} diff --git a/conda_smithy/templates/travis.yml.tmpl b/conda_smithy/templates/travis.yml.tmpl index a8d67f849..02d4fc809 100644 --- a/conda_smithy/templates/travis.yml.tmpl +++ b/conda_smithy/templates/travis.yml.tmpl @@ -19,7 +19,7 @@ env: {%- if travis.secure %} global: {%- for name, hashed_secure in travis.secure | dictsort %} - # The {{ name }} secure variable. This is defined canonically in forge.yml. + # The {{ name }} secure variable. This is defined canonically in conda-forge.yml. - secure: "{{ hashed_secure }}" {%- endfor %} {%- endif %}