Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add modflow6 integration tests #17

Merged
merged 5 commits into from
Feb 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: unpin/upgrade actions
  • Loading branch information
wpbonelli committed Feb 27, 2023
commit f88e991e665122d54b59878bc1d049eb2b8f610f
11 changes: 5 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
# run: python scripts/build_executables.py

- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v3
with:
name: release_build
path: ./*.zip

- name: Upload additional Build Artifacts
if: runner.os == 'Linux'
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v3
with:
name: release_build
path: |
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
echo "$repo next version is $next"

- name: Download release artifact
uses: actions/download-artifact@v3.0.0
uses: actions/download-artifact@v3
with:
name: release_build
path: ./release_build/
Expand All @@ -137,7 +137,6 @@ jobs:

- name: Build release body
run: |
cat Header.md
cat Header.md ./release_build/code.md > BodyFile.md
cat BodyFile.md

Expand All @@ -151,7 +150,7 @@ jobs:

# determine whether changes need to be committed
readme_changed=$(git diff --exit-code README.md)
if [ "$readme_changed" -eq "1" ]; then
if [ "$readme_changed" -eq 1 ]; then
echo "Changes to README.md:"
git diff README.md
changes="true"
Expand Down Expand Up @@ -189,7 +188,7 @@ jobs:
- name: Create release
# only create new release on manual trigger
if: github.event_name == 'workflow_dispatch'
uses: ncipollo/release-action@v1.11.2
uses: ncipollo/release-action@v1
with:
tag: ${{ env.NEXT_VERSION }}
name: "MODFLOW and related programs binary executables"
Expand Down