From c10744c6cb82c1f4d0c3c026317d772230a71767 Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Mon, 19 Feb 2024 13:42:17 -0500 Subject: [PATCH] debug --- .github/workflows/release.yml | 10 ++++++++++ .github/workflows/release_dispatch.yml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 689c93d8dd8..d635ef31301 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -144,6 +144,11 @@ jobs: run: | ostag=$(python -c "from modflow_devtools.ostags import get_ostag; print(get_ostag())") echo "ostag=$ostag" >> $GITHUB_OUTPUT + + - name: Check architecture (macOS) + working-directory: modflow6/bin + if: runner.os == 'macOS' + run: lipo -info mf6 - name: Upload binaries uses: actions/upload-artifact@v3 @@ -488,6 +493,11 @@ jobs: echo "dist directory contains:" ls + + - name: Check architecture (macOS) + working-directory: ${{ needs.build.outputs.distname }}_${{ steps.ostag.outputs.ostag }} + if: runner.os == 'macOS' + run: lipo -info bin/mf6 - name: Install dependencies for example models env: diff --git a/.github/workflows/release_dispatch.yml b/.github/workflows/release_dispatch.yml index 654d6acd292..07abf429e2b 100644 --- a/.github/workflows/release_dispatch.yml +++ b/.github/workflows/release_dispatch.yml @@ -119,7 +119,7 @@ jobs: echo "version=$ver" >> $GITHUB_OUTPUT make_dist: name: Make distribution - uses: MODFLOW-USGS/modflow6/.github/workflows/release.yml@develop + uses: wpbonelli/modflow6/.github/workflows/release.yml@debug-release needs: set_options with: # If the workflow is manually triggered, the maintainer must manually set approve=true to approve a release.