-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
whitespace etc and submodule update to publish recipe
- Loading branch information
Showing
2 changed files
with
31 additions
and
30 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
name: publish_conda | ||
on: | ||
push: | ||
branches: | ||
- main | ||
branches: | ||
- main | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: continuumio/miniconda3:latest | ||
steps: | ||
- name: Checkout Files | ||
uses: actions/checkout@v4 | ||
- name: Run Conda to Build and Publish | ||
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 . | ||
runs-on: ubuntu-latest | ||
container: | ||
image: continuumio/miniconda3:latest | ||
steps: | ||
- name: Checkout Files | ||
uses: actions/checkout@v4 | ||
- name: Run Conda to Build and Publish | ||
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 | ||
git submodule update --init --recursive --remote | ||
conda build . |