Skip to content

Commit 0339cf9

Browse files
committed
Updated yml
1 parent baca400 commit 0339cf9

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/binaries-nightly-release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,23 @@ jobs:
1818
uses: goanpeca/setup-miniconda@v1
1919
with:
2020
miniconda-version: "latest"
21-
python-version: "3.7"
21+
python-version: 3.7
2222

2323
- name: Setup nightly version
2424
run: |
2525
sed -i "s/__version__ = \"\(.*\)\"/__version__ = \"\1.dev$(date -u +%Y%m%d)\"/g" ignite/__init__.py
26+
cat ignite/__init__.py
2627
2728
- name: Install dependencies
29+
shell: bash -l {0}
2830
run: |
29-
conda install pytorch torchvision cpuonly -c pytorch-nightly
31+
conda install -y pytorch torchvision cpuonly -c pytorch-nightly
3032
pip install -r requirements-dev.txt
3133
pip install --upgrade --no-cache-dir twine
3234
python setup.py install
3335
3436
- name: Build and Publish Conda binaries
37+
shell: bash -l {0}
3538
env:
3639
ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
3740
#UPLOAD_USER: "pytorch-nightly"
@@ -41,6 +44,7 @@ jobs:
4144
./conda.recipe/build_and_upload.sh
4245
4346
- name: Build and Publish PyPi binaries
47+
shell: bash -l {0}
4448
env:
4549
PYPI_USER: ${{ secrets.PYPI_USER }}
4650
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)