File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1818 statuses : write
1919 actions : write
2020 checks : read
21+
2122 steps :
2223 - name : Checkout repository
2324 uses : actions/checkout@v3
@@ -31,18 +32,18 @@ jobs:
3132 - name : Create conda environment
3233 run : conda env create -f environment.yml
3334
34- - name : Install conda-build and anaconda-client
35- run : conda install -n dl1dh - c conda-forge conda-build anaconda-client -y
35+ - name : Install conda-build and anaconda-client in base
36+ run : conda install -c conda-forge conda-build anaconda-client -y
3637
3738 - name : Build conda package
3839 run : |
3940 PACKAGE_FILE=$(conda build . --output)
4041 echo "Package built: $PACKAGE_FILE"
4142 shell : bash
4243
43- - name : Upload to Anaconda.org
44+ - name : Upload package to Anaconda.org
4445 env :
45- ANACONDA_API_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
46+ ANACONDA_API_TOKEN : ${{ secrets.ANACONDA_API_TOKEN }}
4647 run : |
4748 PACKAGE_FILE=$(conda build . --output)
4849 anaconda upload "$PACKAGE_FILE" --user ctlearn-project --label main --force
You can’t perform that action at this time.
0 commit comments