* WIP: Improve current nightly implementation * Add nightly icons * Clean up script * Clean up * Clean up * Clean up2 * Clean up3 * WIP: Make the release process non-blocking First commit to fix #4522 * Quick fix * Test release and updater-test * Try nightly build * WIP nightly tag creation * Change of direction * Quick fix * Test nightly * Better release notes for nightly * Migrate to artifact@v4 and prepare publish release * Fix out-yml for artifact@v4 * Progress towards publish-release * merge-multiple: true * Add dependency * Clean up. Change direction again on updater-test (now with RELEASE workflow) * Clean up and test release builds * Fix name * Clean up, add README * Add release notes override, another release test * Fake release version & better draft release * Test nightly * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * Clean up and first attempt at publish-release-apps * Add GH_TOKEN * Add github-token to download-artifact step * Add github-token to all download-artifact steps * Add checkout and node steps * Clean up * Remove whitespace * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest-8-cores) * Quick typo * Add Kevin's semantic-release.sh script to replace make-release.sh --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
10 lines
367 B
Bash
Executable File
10 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
|
|
yq -i '.releaseNotes = strenv(NOTES)' out/latest-linux-arm64.yml
|
|
yq -i '.releaseNotes = strenv(NOTES)' out/latest-linux.yml
|
|
yq -i '.releaseNotes = strenv(NOTES)' out/latest-mac.yml
|
|
yq -i '.releaseNotes = strenv(NOTES)' out/latest.yml
|
|
|
|
NEW_JSON=`jq --arg n "$NOTES" '.notes=$n' out/last_download.json --indent 2`
|
|
echo "$NEW_JSON" > out/last_download.json
|