From f31621f2ff32d24c5a6ec308038ebdc06af6d78c Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 13 Sep 2019 09:04:09 -0500 Subject: [PATCH] Cache components of build artifact and try pushing one final distrobution. --- appveyor.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 9f97e1d..ffda1a9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,6 +19,13 @@ test_script: - cargo build --release - cmd: mkdir -p staging\godot-tts\target\release - cmd: copy target\release\*.dll staging\godot-tts\target\release - - cmd: cd staging - - cmd: 7z a ../windows.zip * - - cmd: appveyor PushArtifact ../windows.zip + # - cmd: cd staging + # - cmd: 7z a ../windows.zip * + - sh: cp godot-tts.gdn* staging/godot-tts + - sh: cp target/release/libgodot_tts.so target/godot-tts/target/release + - sh: cd target + - sh: zip -r9 godot-tts.zip godot-tts/ + - sh: appveyor PushArtifact godot-tts.zip + +cache: + - staging