Skip to content

Commit

Permalink
[ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty1s committed Jun 26, 2021
1 parent b6c3d58 commit 5455b52
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/building-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-16.04] #, macos-10.15, windows-latest]
python-version: [3.6] #, 3.7, 3.8, 3.9]
torch-version: [1.8.0] #, 1.9.0]
cuda-version: ['cpu'] #, 'cu101', 'cu102', 'cu111']
os: [ubuntu-16.04, macos-10.15, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
torch-version: [1.8.0, 1.9.0]
cuda-version: ['cpu', 'cu101', 'cu102', 'cu111']
exclude:
- torch-version: 1.9.0
cuda-version: 'cu101'
Expand Down Expand Up @@ -48,9 +48,8 @@ jobs:
- name: Publish Conda package
run: |
conda install anaconda-client --yes
ls $HOME/conda-bld
# anaconda upload --force --label main $HOME/conda-bld/*/*.tar.bz2
# env:
# ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
anaconda upload --force --label main $HOME/conda-bld/*/*.tar.bz2
env:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
shell:
bash -l {0}

0 comments on commit 5455b52

Please sign in to comment.