From 6639d1ec90f94db27c20a69dd7322334c3a0f527 Mon Sep 17 00:00:00 2001 From: Adam Harrison Date: Sun, 3 Mar 2024 19:03:05 -0500 Subject: Check to see if new github action works. --- .github/workflows/build.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c80024..8d88dd8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,12 +45,20 @@ jobs: - name: Create Release(s) env: { GITHUB_TOKEN: "${{ github.token }}", ARTIFACTS: "lpm.x86_64-linux lpm.riscv64-linux lpm.x86_64-windows.exe lpm.arm-android lpm.aarch64-android lpm.x86-android lpm.x86_64-android" } run: | - gh release delete -y continuous || true; gh release create -t 'Continuous Release' continuous $ARTIFACTS + perl -MFile::Slurp -pe 'last if $_ =~ m/^\s*#/ && $_ !~ m/#\s*$ENV{VERSION}/' < CHANGELOG.md > NOTES.md + gh release delete -y continuous || true; gh release create -t 'Continuous Release' -F NOTES.md continuous $ARTIFACTS if [[ `git tag --points-at HEAD v* | head -c 1` == "v" ]]; then gh release delete -y v$VERSION || true; - gh release create -t v$VERSION v$VERSION $ARTIFACTS + gh release create -t v$VERSION -F NOTES.md v$VERSION $ARTIFACTS gh release delete -y latest || true; - gh release create -t latest latest $ARTIFACTS + gh release create -t latest -F NOTES.md latest $ARTIFACTS + fi + - name: Discord Notification + env: { DISCORD_WEBHOOK: "${{ secrets.DISCORD_WEBHOOK }}" } + run: | + if [[ `git tag --points-at HEAD v* | head -c 1` == "v" ]]; then + perl -MFile::Slurp -e 'use JSON qw(encode_json from_json); print encode_json({ content => "## Lite XL Plugin Manager $ENV{VERSION} has been released!\nhttps://github.com/lite-xl/lite-xl-plugin-manager/releases/tag/v$ENV{VERSION}\n\n### Changes in $ENV{VERSION}:\n" . read_file("NOTES.md") })' | + curl -H 'Content-Type:application/json' $DISCORD_WEBHOOK -X POST -d "$(