Skip to content

Changing packaging structure #24

Changing packaging structure

Changing packaging structure #24

Workflow file for this run

name: publish_conda
on:
pull_request:
branches:
#for testing the restructuring, back on push only later.
- main
jobs:
build_and_publish:
runs-on: ubuntu-latest
container:
image: continuumio/miniconda3:latest
steps:
- name: Checkout Files
uses: actions/checkout@v3
- name: Run Docker to Build and Upload
run: |
conda config --append channels conda-forge
conda config --append channels noaa-gfdl
conda install conda-build anaconda-client conda-verify
export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }}
conda config --set anaconda_upload yes
conda build .