fix some numpy datatypes #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Conda Deployment | |
on: | |
release: | |
types: [created, edited] | |
workflow_dispatch: | |
# push is OK provided there is a test in the build that stops it | |
# from pushing broken stuff and also that there are beta tags on | |
# all versions except when released. That will stop these builds | |
# from being discovered by conda unless explicitly requested. | |
push: | |
branches: | |
- master | |
- dev | |
- conda-testing | |
jobs: | |
conda_build_test_deploy: | |
name: Conda Build (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-latest"] | |
python-version: ["3.7", "3.8"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache conda | |
uses: actions/cache@v1 | |
env: | |
# Increase this value to reset cache if etc/example-environment.yml has not changed | |
CACHE_NUMBER: 0 | |
with: | |
path: | | |
~/conda_pkgs_dir | |
key: ${{ matrix.os }}-conda-${{ env.CACHE_NUMBER }}-${{ hashFiles('.github/workflows/resources/conda_build_environment.yml') }} | |
- name: Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
environment-file: .github/workflows/resources/conda_build_environment.yml | |
activate-environment: conda-build | |
python-version: ${{ matrix.python-version }} | |
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly! | |
- name: Conda Upload | |
shell: bash -l {0} | |
run: | | |
conda config --set anaconda_upload yes | |
anaconda login --hostname github-actions-${{ matrix.os }}-$RANDOM --username ${{ secrets.ANACONDA_USERNAME }} --password ${{ secrets.ANACONDA_PASSWORD }} | |
conda-build --channel conda-forge --user geo-down-under conda | |
anaconda logout |