Skip to content

XML Configure Implementation #8

XML Configure Implementation

XML Configure Implementation #8

Workflow file for this run

name: publish_conda
on:
pull_request:
types: [opened, synchronize, reopened, closed]
jobs:
build_and_publish:
runs-on: ubuntu-latest
container:
image: continuumio/miniconda3:latest
steps:
- name: Checkout Files
uses: actions/checkout@v2
- name: Run Docker to Build and Upload
run: |
conda install conda-build anaconda-client
anaconda login --username ${{ secrets.ANACONDA_USERNAME }} --password ${{ secrets.ANACONDA_PASSWORD }}
pip install .
conda config --set anaconda_upload yes
conda build .