Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,21 @@ jobs:
export PATH=$PATH:$PSPDEV/bin
psp-pacman -V
psp-makepkg -V

dispatch:
if: contains(github.ref,'refs/heads/master')
needs: [build, build-VM]
runs-on: ubuntu-latest

steps:
- name: Send Compile action
run: |
export DISPATCH_ACTION="$(echo run_build)"
echo "NEW_DISPATCH_ACTION=$DISPATCH_ACTION" >> $GITHUB_ENV
- name: Repository Dispatch to psptoolchain-extra
uses: peter-evans/repository-dispatch@v3
with:
repository: ${{ github.repository_owner }}/psptoolchain-extra
token: ${{ secrets.DISPATCH_TOKEN }}
event-type: ${{ env.NEW_DISPATCH_ACTION }}
client-payload: '{"ref": "${{ github.ref }}"}'