kind of but not really fix build #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push submodule update dispatch event to droidboot_gui repo | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify droidboot_gui repo | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ secrets.PAT }} | |
repository: "Android-Boot-Manager/droidboot_gui" | |
event-type: submodule-update | |
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "module": "Android-Boot-Manager/droidboot_platforms", "branch": "main"}' |