From 99ac012fec3d8e631de4928caece2802c82a7888 Mon Sep 17 00:00:00 2001 From: hoontee Date: Sat, 8 Jul 2023 21:21:07 -0500 Subject: [PATCH] Extract Sample Project --- .github/workflows/Publish-main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Publish-main.yml b/.github/workflows/Publish-main.yml index 5746a24..6b95586 100644 --- a/.github/workflows/Publish-main.yml +++ b/.github/workflows/Publish-main.yml @@ -14,9 +14,13 @@ jobs: - name: Download repository uses: actions/checkout@master - # Exclusive to the sample workflow; please this step! + # Exclusive to the sample workflow; please remove this step! - name: Extract Sample Project - run: move "Sample Project/*" ./ + run: | + move "Sample Project/*" "../temp/" + rmdir "./" /s /q + move "../temp/*" ./ + rmdir "../temp/*" /s /q # aftman.toml is currently required to download Lune and build offline. - name: Setup Aftman