From 67a6397f0e3b761c25a0216ab2ae5592b5b0c967 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Fri, 3 Jul 2020 20:33:49 +0300 Subject: [PATCH] CI - copy "pixelorama" folder to the Artifact without cloning the repo We already checkout as out first step so we don't need to clone the repository again. This commit also removes the ".gdignore" file from the Artifacts. --- .github/workflows/godot-ci-test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/godot-ci-test.yml b/.github/workflows/godot-ci-test.yml index 126bb5b21..f6cc09d64 100644 --- a/.github/workflows/godot-ci-test.yml +++ b/.github/workflows/godot-ci-test.yml @@ -28,10 +28,10 @@ jobs: mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable - name: Windows Build 🔧 run: godot -v --export "Windows Desktop 64-bit" ./build/windows-64bit/$EXPORT_NAME.exe - - name: Clone Pixelorama Repository 📁 + - name: Copy pixelorama folder 📁 run: | - git clone https://github.com/Orama-Interactive/Pixelorama.git - cp -R /__w/Pixelorama/Pixelorama/Pixelorama/pixelorama ./build/windows-64bit + cp -R ./pixelorama ./build/windows-64bit + rm ./build/windows-64bit/pixelorama/.gdignore - name: Upload Artifact 🚀 uses: actions/upload-artifact@v1 with: @@ -54,10 +54,10 @@ jobs: mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable - name: Linux Build 🔧 run: godot -v --export "Linux/X11 64-bit" ./build/linux-64bit/$EXPORT_NAME.x86_64 - - name: Clone Pixelorama Repository 📁 + - name: Copy pixelorama folder 📁 run: | - git clone https://github.com/Orama-Interactive/Pixelorama.git - cp -R /__w/Pixelorama/Pixelorama/Pixelorama/pixelorama ./build/linux-64bit + cp -R ./pixelorama ./build/linux-64bit + rm ./build/linux-64bit/pixelorama/.gdignore - name: Upload Artifact 🚀 uses: actions/upload-artifact@v1 with: