From 5d728de4b65ab88cf9c267f95555f0bd66aab202 Mon Sep 17 00:00:00 2001 From: George Sokianos Date: Tue, 17 Dec 2024 18:07:03 +0000 Subject: [PATCH] Fixes for pr 219 (#224) --- .github/workflows/makeRelease.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/makeRelease.yml b/.github/workflows/makeRelease.yml index fe5ff2a3..88dea030 100644 --- a/.github/workflows/makeRelease.yml +++ b/.github/workflows/makeRelease.yml @@ -27,10 +27,13 @@ jobs: announcements: needs: [compile-ppc, compile-spe] name: Notify on Discord on successful release - uses: appleboy/discord-action@master - with: - webhook_id: ${{ secrets.DISCORD_ANNOUNCEMENTS_ID }} - webhook_token: ${{ secrets.DISCORD_ANNOUNCEMENTS_TOKEN }} - message: "New release of clib4: **${{ github.event.release.tag_name }}** has been created. Check it out at: https://github.com/AmigaLabs/clib4/releases/tag/${{ github.event.release.tag_name }}" - username: "GitHub Actions" - avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" \ No newline at end of file + runs-on: ubuntu-latest + steps: + - name: Notify on Discord on successful release + uses: appleboy/discord-action@master + with: + webhook_id: ${{ secrets.DISCORD_ANNOUNCEMENTS_ID }} + webhook_token: ${{ secrets.DISCORD_ANNOUNCEMENTS_TOKEN }} + message: "New release of clib4: **${{ github.event.release.tag_name }}** has been created. Check it out at: https://github.com/AmigaLabs/clib4/releases/tag/${{ github.event.release.tag_name }}" + username: "GitHub Actions" + avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" \ No newline at end of file