Fix final zip command in Windows deploy

This commit is contained in:
oldmud0 2019-02-06 23:42:08 +00:00
parent 0dca4f14fe
commit bc0e224640

View File

@ -109,7 +109,7 @@ deploy windows:
- linux - linux
script: script:
- apt-get update - apt-get update
- apt-get install --no-install-recommends -y zip - apt-get install --no-install-recommends -y zip git
- mkdir artifact - mkdir artifact
- cd artifact - cd artifact
@ -122,7 +122,9 @@ deploy windows:
# Zipping # Zipping
# -r: recursive; -9: max compression; -l: convert to CR LF # -r: recursive; -9: max compression; -l: convert to CR LF
- zip -r -9 -l Attorney_Online_$(git describe --tags)_windows_i386.zip . - mkdir ../zip
- zip -r -9 -l ../zip/Attorney_Online_$(git describe --tags)_windows_i386.zip .
- sha1sum ../zip/*
artifacts: artifacts:
paths: paths:
- zip/ - zip/