Skip to content

Commit

Permalink
zipfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Feb 15, 2024
1 parent 37dfa80 commit 86f5bf7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ jobs:
- name: Build programs
run: |
# build programs where mf6 autotests expect them
python executables/scripts/build_programs.py -p modflow6/bin/downloaded
# build programs
mkdir programs
python executables/scripts/build_programs.py -p programs
# move programs where mf6 autotests expect them
cp programs/* modflow6/bin/downloaded
# move mf6 binaries to top-level bindir in mf6 repo
if [[ "$RUNNER_OS" == "Windows" ]]; then
Expand All @@ -86,7 +90,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: programs
path: ./*.zip
path: programs.zip

- name: Upload metadata
if: runner.os == 'Linux'
Expand Down

0 comments on commit 86f5bf7

Please sign in to comment.