Skip to content
This repository was archived by the owner on Jul 26, 2025. It is now read-only.

Commit 992783a

Browse files
authored
Generate release notes manually as the automatic generation has some issues with finding the previous release (#43)
1 parent 34dcee0 commit 992783a

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,3 @@ jobs:
4141
uses: softprops/action-gh-release@v2
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
44-
with:
45-
generate_release_notes: true
46-
body_path: RELEASE.md

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,18 +72,19 @@ Update the version in the `pom.xml`, create a tag, and push it by running
7272

7373
```
7474
export VERSION=X.Y.Z
75-
vi RELEASE.md
7675
git checkout --detach HEAD
7776
sed -i -E "s/<version>[0-9]+\-SNAPSHOT<\/version>/<version>$VERSION<\/version>/g" pom.xml
78-
git add RELEASE.md
79-
git commit -p -m "v$VERSION" pom.xml RELEASE.md
77+
git commit -m "v$VERSION" pom.xml
8078
git tag v$VERSION
8179
git push origin v$VERSION
8280
```
8381

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

84+
Then, go to the GitHub repository [releases page](https://github.com/atraplet/ecos4j/releases) and update the release.
85+
8686
## Credits
8787

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

0 commit comments

Comments
 (0)