fix(docker): add BuildNum variable.
This commit is contained in:
parent
8a1870f7d5
commit
6a15a1fd58
@ -27,10 +27,10 @@ install:
|
|||||||
build_script:
|
build_script:
|
||||||
- ps: |
|
- ps: |
|
||||||
if ( $env:APPVEYOR_REPO_TAG -eq 'false' ) {
|
if ( $env:APPVEYOR_REPO_TAG -eq 'false' ) {
|
||||||
go build -ldflags "-X main.build=$env:APPVEYOR_BUILD_VERSION" -a -o drone-telegram.exe
|
go build -ldflags "-X main.BuildNum=$env:APPVEYOR_BUILD_VERSION" -a -o drone-telegram.exe
|
||||||
} else {
|
} else {
|
||||||
$version = $env:APPVEYOR_REPO_TAG_NAME
|
$version = $env:APPVEYOR_REPO_TAG_NAME
|
||||||
go build -ldflags "-X main.Version=$version -X main.build=$env:APPVEYOR_BUILD_VERSION" -a -o drone-telegram.exe
|
go build -ldflags "-X main.Version=$version -X main.BuildNum=$env:APPVEYOR_BUILD_VERSION" -a -o drone-telegram.exe
|
||||||
}
|
}
|
||||||
docker pull microsoft/nanoserver:10.0.14393.1884
|
docker pull microsoft/nanoserver:10.0.14393.1884
|
||||||
docker build -f Dockerfile.windows -t appleboy/drone-telegram:windows .
|
docker build -f Dockerfile.windows -t appleboy/drone-telegram:windows .
|
||||||
|
Loading…
Reference in New Issue
Block a user