mirror of
https://github.com/elseif/MikroTikPatch
synced 2026-07-17 18:49:41 +00:00
Update mikrotik_patch_7.yml
Signed-off-by: elseif <elseif@live.cn>
This commit is contained in:
parent
b3579cb363
commit
d309253b06
13
.github/workflows/mikrotik_patch_7.yml
vendored
13
.github/workflows/mikrotik_patch_7.yml
vendored
@ -27,6 +27,11 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
default: ''
|
default: ''
|
||||||
type: string
|
type: string
|
||||||
|
buildtime:
|
||||||
|
description: "Build Time"
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
|
type: string
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
@ -56,7 +61,13 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Set build time
|
- name: Set build time
|
||||||
id: set_buildtime
|
id: set_buildtime
|
||||||
run: echo "BUILD_TIME=$(date +'%s')" >> $GITHUB_OUTPUT
|
run:
|
||||||
|
_BUILD_TIME=${{ github.event.inputs.buildtime }}
|
||||||
|
if [$BUILD_TIME == ""];then
|
||||||
|
echo "BUILD_TIME=$(date +'%s')" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "BUILD_TIME=$_BUILD_TIME" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
Patch_RouterOS:
|
Patch_RouterOS:
|
||||||
needs: Set_BuildTime
|
needs: Set_BuildTime
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user