diff --git a/.github/workflows/deploy-book.yml b/.github/workflows/deploy-book.yml index 6cc885b..e552a35 100644 --- a/.github/workflows/deploy-book.yml +++ b/.github/workflows/deploy-book.yml @@ -13,13 +13,20 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Setup Miniconda - uses: conda-incubator/setup-miniconda@v2.2.0 - with: + uses: conda-incubator/setup-miniconda@v2.2.0 + with: # channels: conda-forge,defaults # channel-priority: true - activate-environment: ols-program-paper - environment-file: environment.yml + activate-environment: ols-stats + environment-file: environment.yml + - shell: bash -el {0} + run: | + conda info + conda list + conda config --show-sources + conda config --show - name: Build the book + shell: bash -el {0} run: | jupyter-book build . # Push the book's HTML to github-pages diff --git a/environment.yml b/environment.yml index e854a32..b205493 100644 --- a/environment.yml +++ b/environment.yml @@ -1,4 +1,4 @@ -name: ols-program-paper +name: ols-stats channels: - conda-forge - defaults