We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 28afbf0 + edf4e60 commit 62d8935Copy full SHA for 62d8935
.github/workflows/cd.yml
@@ -18,6 +18,21 @@ jobs:
18
auto-update-conda: false
19
auto-activate-base: false
20
show-channel-urls: true
21
+ - name: Enforce .tar.bz2 packages
22
+ # Temporary work-arounds while the action uibcdf/action-build-and-upload-conda-packages gets updated:
23
+ # We create a `~/.condarc` file with the correct options to enforce the use of `.tar.bz2` packages
24
+ # and we set the channels to be used by conda build
25
+ shell: bash
26
+ run: |
27
+ cat > ~/.condarc << EOF
28
+ conda-build:
29
+ pkg_format: .tar.bz2
30
+ channels:
31
+ - accessnri
32
+ - conda-forge
33
+ - coecms
34
+ - nodefaults
35
+ EOF
36
- name: Build and upload the conda packages
37
uses: uibcdf/[email protected]
38
with:
0 commit comments