Skip to content

Commit

Permalink
keep only the most recent release on readme.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
selul committed Apr 17, 2024
1 parent 61bb8f5 commit 6627b07
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 605 deletions.
2 changes: 1 addition & 1 deletion .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-slack-bot"
Expand Down
21 changes: 21 additions & 0 deletions bin/update_changelog.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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 6627b07

Please sign in to comment.