Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,15 @@ jobs:
pip list
mamba list
- name: Build conda package
if: ${{ github.event_name != "push" }}
if: ${{ github.event_name != 'push' || github.repository != 'dask-contrib/dask-sql' }}
shell: bash -l {0}
run: |
# suffix for nightly package versions
export VERSION_SUFFIX=`date +%y%m%d`

mamba build continuous_integration/recipe --no-anaconda-upload
- name: Build and upload conda package
if: ${{ github.event_name == "push" }}
if: ${{ github.event_name == 'push' && github.repository == 'dask-contrib/dask-sql' }}
shell: bash -l {0}
env:
ANACONDA_API_TOKEN: ${{ secrets.DASK_CONDA_TOKEN }}
Expand Down