Skip to content

Commit

Permalink
Generate release notes manually as the automatic generation has some …
Browse files Browse the repository at this point in the history
…issues with finding the previous release (#26)
  • Loading branch information
atraplet committed May 19, 2024
1 parent 6942203 commit 767d137
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,3 @@ jobs:
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
generate_release_notes: true
body_path: RELEASE.md
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,22 @@ Update the version in the `pom.xml`, create a tag, and push it by running

```
export ECOS_VERSION=X.Y.Z
export VERSION=X.Y.Z-$ECOS_VERSION
vi RELEASE.md
export VERSION=X.Y.Z
export VERSION=$VERSION-$ECOS_VERSION
git checkout --detach HEAD
sed -i -E "s/<version>[0-9]+\-SNAPSHOT<\/version>/<version>$VERSION<\/version>/g" pom.xml
git add RELEASE.md
git commit -p -m "v$VERSION" pom.xml RELEASE.md
git commit -m "v$VERSION" pom.xml
git tag v$VERSION
git push origin v$VERSION
```

This will trigger the upload of the package to Maven Central via GitHub Actions.

Then, go to the GitHub repository [releases page](https://github.com/atraplet/ecos4j-native/releases) and update the
release.

## Credits

This project is based on the native open source mathematical programming solver [ECOS](https://github.com/embotech/ecos),
This project is based on the native open source mathematical programming
solver [ECOS](https://github.com/embotech/ecos),
which is developed and maintained by [embotech](https://www.embotech.com), Alexander Domahidi, and others.

0 comments on commit 767d137

Please sign in to comment.