From 2f2031bbb47a874b9b46ccd90f86ca6f6c664e52 Mon Sep 17 00:00:00 2001 From: "K. S. Ernest (iFire) Lee" Date: Sun, 27 Oct 2024 20:35:22 -0700 Subject: [PATCH] Merge into separate directories. --- .github/workflows/build.yaml | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 34e48eaac..894b52a09 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -98,23 +98,17 @@ jobs: --ci-only-on-alert \ --file results.json \ "hyperfine --show-output --runs 1 --export-json results.json 'just $PLATFORM_ARGS && just build-platform-target ${{ matrix.platform }} ${{ matrix.target }}'" - - name: Upload Artifacts - uses: actions/upload-artifact@v4 - with: - name: build-${{ matrix.platform }}-${{ matrix.target }} - path: godot/bin/* - - name: Upload TPZ File - uses: actions/upload-artifact@v4 - with: - name: Godot-${{ matrix.platform }}-${{ matrix.target }}.tpz - path: tpz + - name: Fetch dependencies and Build Platform Target + run: | + cp -rf godot/bin ${{ matrix.target }} - - name: Upload Godot Editor Files + - name: Upload Godot Files uses: actions/upload-artifact@v4 with: - name: Godot-${{ matrix.platform }}-${{ matrix.target }} - path: editor + name: ${{ matrix.platform }}-${{ matrix.target }} + path: | + ${{ matrix.target }} merge: runs-on: ubuntu-latest @@ -124,4 +118,5 @@ jobs: uses: actions/upload-artifact/merge@v4 with: name: v-sekai-world + separate-directories: true delete-merged: true