We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 193c352 commit 9169e20Copy full SHA for 9169e20
appveyor.yml
@@ -28,7 +28,9 @@ before_build:
28
build_script:
29
- cd c:\certcheck
30
- go get gopkg.in/yaml.v2
31
- - go build -o ${env:FILENAME}
32
- - dir
+ - go build
+ - ps: |
33
+ if (Test-Path .\certcheck.exe -PathType Any) { Rename-Item .\certcheck.exe -newName ${env:FILENAME} }
34
+ if (Test-Path .\certcheck -PathType Any) { Rename-Item .\certcheck -newName ${env:FILENAME} }
35
artifacts:
36
- path: '.\certcheck_*'
0 commit comments