From be9e963366d7ad20f84e8114a9cce60013be9a03 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 4 Oct 2019 13:11:27 -0500 Subject: [PATCH] Place release files in single directory. --- .gitlab-ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a0cc526..95de51f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,15 +19,14 @@ build linux: publish: stage: publish script: - - cp godot-tts.gdnlib.release godot-tts.gdnlib - - mkdir -p target/release - - cp linux/release/*.so target/release + - mkdir godot-tts + - cp godot-tts.gdnlib.release godot-tts/godot-tts.gdnlib + - mkdir -p godot-tts/target/release + - cp linux/release/*.so godot-tts/target/release + - cp LICENSE godot-tts + - cp TTS.gd godot-tts.g* godot-tts artifacts: name: godot-tts paths: - - target - - TTS.gd - - godot-tts.gdnlib - - godot-tts.gdns - - LICENSE + - godot-tts expire_in: 1 day