mirror of
https://github.com/stupidloud/nanopi-openwrt.git
synced 2025-06-03 22:03:43 +08:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Repo Dispatcher
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
package_clean:
|
|
type: choice
|
|
description: 'check to make clean package'
|
|
options:
|
|
- true
|
|
- false
|
|
default: 'true'
|
|
required: true
|
|
debug:
|
|
type: choice
|
|
description: 'debug?'
|
|
options:
|
|
- true
|
|
- false
|
|
default: 'false'
|
|
required: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
device: [r1p, r1p-lts, r1s, r1s-h3, r2c, r2s, r4s, r5s, x86]
|
|
steps:
|
|
- name: Trigger Compile
|
|
run: |
|
|
branch='master';
|
|
curl \
|
|
-X POST https://api.github.com/repos/${{ github.repository }}/dispatches \
|
|
-H "Accept: application/vnd.github.everest-preview+json" \
|
|
-H "Authorization: token ${{ secrets.SEC_TOKEN }}" \
|
|
-d '{"event_type": "${{ matrix.device }}", "client_payload": {"branch": "'$branch'", "device": "${{ matrix.device }}", "package_clean": "${{ github.event.inputs.package_clean }}", "debug": "${{ github.event.inputs.debug }}" }}'
|