We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f0fd11 commit 9901aa1Copy full SHA for 9901aa1
1 file changed
.appveyor.yml
@@ -5,7 +5,7 @@ before_build:
5
6
platform:
7
- Win32
8
-# - x64
+ - x64
9
10
configuration:
11
- Release_AES256
@@ -14,9 +14,8 @@ configuration:
14
# - Release_AES128
15
16
after_build:
17
- - cmd: 7z a -tzip SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%.zip bin/ -xr@x_fn.txt
18
- - cmd: rename SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%.zip SQLite3-Encryption.zip
19
- - ps: Push-AppveyorArtifact SQLite3-Encryption.zip
+ - cmd: 7z a -tzip SQLite3-Encryption_%platform%-v%APPVEYOR_BUILD_VERSION%.zip bin/ -xr@x_fn.txt
+ - ps: Get-ChildItem .\*.nupkg | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
20
21
deploy:
22
release: SQLite3-Encryption-v%APPVEYOR_BUILD_VERSION%
0 commit comments