mirror of
https://huihui.cat/mirrors/MikroTikPatch.git
synced 2026-03-08 00:27:08 +01:00
Update mikrotik_patch_7.yml
Signed-off-by: elseif <elseif@live.cn>
This commit is contained in:
parent
1426fc061a
commit
ece607c8f7
1 changed files with 19 additions and 3 deletions
22
.github/workflows/mikrotik_patch_7.yml
vendored
22
.github/workflows/mikrotik_patch_7.yml
vendored
|
|
@ -5,7 +5,23 @@ on:
|
|||
# schedule:
|
||||
# - cron: "0 0 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
inputs:
|
||||
arch:
|
||||
description: 'Architecture (x86, arm64)'
|
||||
required: true
|
||||
default: 'x86'
|
||||
type: choice
|
||||
options:
|
||||
- x86
|
||||
- arm64
|
||||
channel:
|
||||
description: 'Channel (stable, testing)'
|
||||
required: true
|
||||
default: 'stable'
|
||||
type: choice
|
||||
options:
|
||||
- stable
|
||||
- testing
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
|
|
@ -42,8 +58,8 @@ jobs:
|
|||
runs-on: ubuntu-22.04
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [x86]
|
||||
channel: [stable, testing]
|
||||
arch: [${{ github.event.inputs.arch }}]
|
||||
channel: [${{ github.event.inputs.channel }}]
|
||||
env:
|
||||
TZ: 'Asia/Shanghai'
|
||||
LATEST_VERSION: ""
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue