chore: attemp 2 to fix CI failure after the recent CHANGELOG changes

pull/1890/head
Ellet 11 months ago
parent a189c30119
commit 3fd4ea2b33
  1. 12
      .github/workflows/publish.yml
  2. 4
      scripts/update_package_version.dart

@ -68,10 +68,18 @@ jobs:
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v2
run: |
# Fetch the release notes using the GitHub API
releaseId=$(jq -r .release.id $GITHUB_EVENT_PATH)
releaseNotes=$(curl -s \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
"https://api.github.com/repos/${{ github.repository }}/releases/$releaseId" | jq -r .body)
echo "RELEASE_NOTES=${releaseNotes}" >> $GITHUB_OUTPUT
- name: Update the version & CHANGELOG for all the packages
run: dart ./scripts/update_package_version.dart ${{ steps.extract_version.outputs.VERSION }} "${{ steps.extract-release-notes.outputs.release_notes }}"
run: dart ./scripts/update_package_version.dart ${{ steps.extract_version.outputs.VERSION }} "${{ steps.extract-release-notes.outputs.RELEASE_NOTES }}"
- name: Commit the changes of the updated version & CHANGELOG for all the packages
id: auto-commit-action

@ -53,6 +53,10 @@ Future<void> main(List<String> args) async {
exit(1);
}
print(
'The version is $passedVersion and the content is:\n$passedVersionContent',
);
// A file that will be used to build the `CHANGELOG.md` files
// the data format is in Json
final sourceChangeLogFile = File('./CHANGELOG_DATA.json');

Loading…
Cancel
Save