Skip to content

Commit

Permalink
Merge pull request #994 from Codeinwp/chore/readme-release-notes
Browse files Browse the repository at this point in the history
refactor: keep only the latest release in `readme.txt`
  • Loading branch information
Soare-Robert-Daniel authored Nov 8, 2024
2 parents e7919ed + 3a4f588 commit 54072dd
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1,075 deletions.
4 changes: 2 additions & 2 deletions .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins:
- - "@semantic-release/release-notes-generator"
- preset: simple-preset
- - "@semantic-release/exec"
- prepareCmd: "replace-in-file \"== Changelog ==\" \"== Changelog ==\n\n${nextRelease.notes}\" readme.txt"
- prepareCmd: 'export nextReleaseNotes="${nextRelease.notes}" && node bin/update-changelog.js'
- - "@semantic-release/exec"
- prepareCmd: grunt version::${nextRelease.version} && grunt wp_readme_to_markdown
- - "@semantic-release/git"
Expand All @@ -31,4 +31,4 @@ plugins:
- pattern: master
notifyOnSuccess: true
notifyOnFail: false
- - "@semantic-release/github"
- - "@semantic-release/github"
20 changes: 20 additions & 0 deletions bin/update-changelog.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
const replace = require('replace-in-file');

async function updateChangelog() {
const options = {
files: 'readme.txt',
from: /== Changelog ==[\s\S]*?\[See changelog for all versions\]/,
to: (match) => {
return `== Changelog ==\n\n${process.env.nextReleaseNotes}\n\n[See changelog for all versions]`;
},
encoding: 'utf8',
};
try {
const results = await replace(options);
console.log('Replacement results:', results);
} catch (error) {
console.error('Error occurred:', error);
}
}

updateChangelog();
Loading

0 comments on commit 54072dd

Please sign in to comment.