Skip to content

Commit

Permalink
ci: fix version string (#40)
Browse files Browse the repository at this point in the history
* don't manually append dev to version string
* don't specify distribution contents in README
  • Loading branch information
wpbonelli authored Jul 17, 2023
1 parent 871da67 commit a86378e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/full-dist-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ jobs:
developmode: false
full: true
run_tests: false
version: "${{ needs.get_version.outputs.version }}dev"
version: "${{ needs.get_version.outputs.version }}"
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
id: get_version
run: |
ver=$(python update_version.py -g)
echo "version=${ver}dev" >> "$GITHUB_OUTPUT"
echo "version=${ver}" >> "$GITHUB_OUTPUT"
make_dist:
name: Make development distribution
Expand Down
18 changes: 1 addition & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,7 @@ The `develop` branch of the [MODFLOW 6 repository](https://github.com/MODFLOW-US

## Distribution contents

The nightly builds are available as operating-system specific [distributions](https://github.com/MODFLOW-USGS/modflow6-nightly-build/releases/latest). Each includes an internal directory `mf6.y.zdev_<ostag>` with two subdirectories, `bin` and `doc`, and a `code.json` metadata file.

**mf6.y.zdev_...**

- **code.json**: a JSON file with version information and other metadata

- **bin/**

1. **mf6[.exe]**: MODFLOW 6
2. **mf5to6[.exe]**: the MODFLOW 5 to 6 converter
3. **zbud6[.exe]**: the zone budget utility for MODFLOW 6
4. **libmf6[.dll/so/dylib]**: a dynamic-linked library or shared object version of MODFLOW 6

- **doc/**

1. **release.pdf**: release notes
2. **mf6io.pdf**: input/output documentation
The nightly builds are available as operating-system specific [distributions](https://github.com/MODFLOW-USGS/modflow6-nightly-build/releases/latest) including binaries, MODFLOW 6 input/output documentation, development notes, and a `code.json` metadata file.

### Binaries

Expand Down

0 comments on commit a86378e

Please sign in to comment.