Обновить .gitea/workflows/ci.yaml
This commit is contained in:
parent
65c3a6f615
commit
4e7d26ae25
1 changed files with 21 additions and 17 deletions
|
@ -1,22 +1,26 @@
|
|||
name: Docker Image CI
|
||||
name: Forgejo test
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
|
||||
string_local_version:
|
||||
string:
|
||||
description: 'Local version'
|
||||
logLevel:
|
||||
description: 'Log Level'
|
||||
required: true
|
||||
default: 'o2os'
|
||||
type: string
|
||||
|
||||
env:
|
||||
inputs_string_local_version: ${{ inputs.string_local_version }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: linux_amd64
|
||||
steps:
|
||||
- run: ls -la
|
||||
- run: env | grep inputs
|
||||
default: 'warning'
|
||||
type: choice
|
||||
options:
|
||||
- info
|
||||
- warning
|
||||
- debug
|
||||
boolean:
|
||||
description: 'Boolean'
|
||||
required: false
|
||||
type: boolean
|
||||
number:
|
||||
description: 'Number'
|
||||
default: '100'
|
||||
type: number
|
||||
string:
|
||||
description: 'String'
|
||||
required: true
|
||||
type: string
|
Loading…
Reference in a new issue