We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 456c621 commit e5dcdc7Copy full SHA for e5dcdc7
1 file changed
.github/workflows/deploy-docs.yml
@@ -18,9 +18,12 @@ jobs:
18
- name: Build environment
19
shell: bash -l {0}
20
run: |
21
- conda create --name OHW-site --file .binder/conda-linux-64.lock
+ conda config --set always_yes yes --set changeps1 no --set show_channel_urls true
22
+ conda update --quiet conda
23
+ conda config --add channels conda-forge --force
24
+ conda config --set channel_priority strict
25
+ conda create --name OHW-site -c conda-forge rb-bundler compilers
26
source activate OHW-site
- conda install rb-bundler compilers
27
bundle install
28
- name: Build documentation
29
0 commit comments