Skip to content

Fixes for pr 219 (#223) #12

Fixes for pr 219 (#223)

Fixes for pr 219 (#223) #12

Workflow file for this run

name: Make a new release
on:
release:
branches:
- master
types:
- published
jobs:
compile-ppc:
name: Build for PowerPC cpus
uses: ./.github/workflows/_compile.yml
with:
git_tag: ${{ github.event.release.tag_name }}
gcc: 11
spe: "no"
compile-spe:
name: Build for PowerPC SPE cpus
uses: ./.github/workflows/_compile.yml
with:
git_tag: ${{ github.event.release.tag_name }}
gcc: 6
spe: "yes"
announcements:
needs: [compile-ppc, compile-spe]
name: Notify on Discord on successful release
uses: appleboy/discord-action@master

Check failure on line 30 in .github/workflows/makeRelease.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/makeRelease.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be rooted in '.github/workflows'
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"