Json reader 추가
This commit is contained in:
parent
54e8df71ad
commit
e06770c359
1 changed files with 15 additions and 5 deletions
|
|
@ -19,23 +19,33 @@ pipeline:
|
|||
- exe: zip
|
||||
|
||||
commands:
|
||||
### 콜백이 필요없는 단순 깃 명령 호출
|
||||
- command: Git
|
||||
id: git
|
||||
param:
|
||||
workspace: <!property.workspace>
|
||||
commands:
|
||||
- restore .
|
||||
- clean -f
|
||||
- switch pipeline
|
||||
|
||||
### 깃 리비전 정보 저장
|
||||
- command: GitRev
|
||||
id: git-rev
|
||||
param:
|
||||
workspace: <!property.workspace>
|
||||
result-value: <!property.git_rev>
|
||||
|
||||
### Json value read
|
||||
- command: JsonValue
|
||||
id: json-value
|
||||
param:
|
||||
- set:
|
||||
from: gitHash
|
||||
to: <!property:old-git-rev>
|
||||
- set:
|
||||
from: version
|
||||
to: <!property:old-version>
|
||||
|
||||
### Version 쓰기
|
||||
### Version 쓰기
|
||||
- command: CreateAppData
|
||||
id: appData
|
||||
param:
|
||||
|
|
@ -45,12 +55,12 @@ commands:
|
|||
returnVersion: "<!property.version>"
|
||||
returnHash: "<!property.hash>"
|
||||
|
||||
### 실행가능한 파일로 빌드
|
||||
### 실행가능한 파일로 빌드
|
||||
- command: BuildDart
|
||||
id: buildDart
|
||||
param: {}
|
||||
|
||||
### 최종 zip 파일 형태로 저장
|
||||
### 최종 zip 파일 형태로 저장
|
||||
- command: Zip
|
||||
id: zip
|
||||
param:
|
||||
|
|
|
|||
Loading…
Reference in a new issue