Commit ca09125f authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Make sure failures fail

parent 2fc083e5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -64,10 +64,10 @@ jobs:
          # boa uses mamba to resolve dependencies
          conda install -y anaconda-client boa
          cd conda.recipe
          VERSION=$(versioningit ../) conda mambabuild --output-folder . -c conda-forge .
          VERSION=$(versioningit ../) conda mambabuild --output-folder . -c conda-forge . || exit 1
      - name: Verify Conda Package
        run: |
          conda verify noarch/imars3d*.tar.bz2
          conda verify noarch/imars3d*.tar.bz2 || exit 1
      - name: Deploy to Anaconda
        shell: bash -l {0}
        if: startsWith(github.ref, 'refs/tags/v')