Skip to content

Commit

Permalink
whitespace etc and submodule update to publish recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ilaflott committed Oct 3, 2024
1 parent e31cf40 commit 7b31a20
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 30 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/build_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ on:

jobs:
build:
runs-on: ubuntu-latest
container:
image: continuumio/miniconda3:latest
steps:
- name: Checkout Files
uses: actions/checkout@v4
- name: Run Conda to Build
run: |
conda config --append channels conda-forge
conda config --append channels noaa-gfdl
conda install conda-build conda-verify
git submodule update --init --recursive --remote
conda build .
ls .
runs-on: ubuntu-latest
container:
image: continuumio/miniconda3:latest
steps:
- name: Checkout Files
uses: actions/checkout@v4
- name: Run Conda to Build
run: |
conda config --append channels conda-forge
conda config --append channels noaa-gfdl
conda install conda-build conda-verify
git submodule update --init --recursive --remote
conda build .
ls .
33 changes: 17 additions & 16 deletions .github/workflows/publish_conda.yml
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 .

0 comments on commit 7b31a20

Please sign in to comment.