Skip to content

Commit e5dcdc7

Browse files
committed
Create conda env with package names rather than a non-existent file
Closes #94
1 parent 456c621 commit e5dcdc7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ jobs:
1818
- name: Build environment
1919
shell: bash -l {0}
2020
run: |
21-
conda create --name OHW-site --file .binder/conda-linux-64.lock
21+
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
2226
source activate OHW-site
23-
conda install rb-bundler compilers
2427
bundle install
2528
- name: Build documentation
2629
shell: bash -l {0}

0 commit comments

Comments
 (0)