From d19892a6698ea857fa3d3e7b5e6b2c60d79a0618 Mon Sep 17 00:00:00 2001 From: chippmann Date: Thu, 16 May 2024 17:53:46 +0200 Subject: [PATCH] Fix missing paths --- .github/workflows/assemble_export_templates.yml | 6 ++++++ .github/workflows/assemble_ios.yml | 1 + .github/workflows/assemble_macos.yml | 4 ++++ .github/workflows/build_android.yml | 1 + .github/workflows/build_ios.yml | 1 + .github/workflows/build_linux.yml | 1 + .github/workflows/build_macos.yml | 1 + .github/workflows/build_windows.yml | 1 + 8 files changed, 16 insertions(+) diff --git a/.github/workflows/assemble_export_templates.yml b/.github/workflows/assemble_export_templates.yml index 71e71b2bc..1f50d8d23 100644 --- a/.github/workflows/assemble_export_templates.yml +++ b/.github/workflows/assemble_export_templates.yml @@ -37,6 +37,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_all_ios + path: "./" - name: Move ios export template shell: sh @@ -46,6 +47,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_debug_linux_x86_64 + path: "./" - name: Move linux x86_64 debug export template shell: sh @@ -55,6 +57,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_release_linux_x86_64 + path: "./" - name: Move linux x86_64 release export template shell: sh @@ -64,6 +67,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_debug_windows_x86_64 + path: "./" - name: Move windows x86_64 debug export template shell: sh @@ -73,6 +77,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_release_windows_x86_64 + path: "./" - name: Move windows x86_64 release export template shell: sh @@ -82,6 +87,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_all_macos + path: "./" - name: Move macos export template shell: sh diff --git a/.github/workflows/assemble_ios.yml b/.github/workflows/assemble_ios.yml index 3675f9357..ff9607a7b 100644 --- a/.github/workflows/assemble_ios.yml +++ b/.github/workflows/assemble_ios.yml @@ -29,6 +29,7 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_ios_all + path: "./" - name: Clone MoltenVK uses: actions/checkout@v4 diff --git a/.github/workflows/assemble_macos.yml b/.github/workflows/assemble_macos.yml index 167289dba..d76646b89 100644 --- a/.github/workflows/assemble_macos.yml +++ b/.github/workflows/assemble_macos.yml @@ -38,11 +38,13 @@ jobs: uses: actions/download-artifact@v4 with: name: editor_${{ matrix.target }}_macos_x86_64 + path: "./" - name: Download ${{ matrix.target }} arm64 editor uses: actions/download-artifact@v4 with: name: editor_${{ matrix.target }}_macos_arm64 + path: "./" - name: Create ${{ matrix.target }} OSX universal binary uses: ./.github/actions/create-macos-universal-binary @@ -129,11 +131,13 @@ jobs: uses: actions/download-artifact@v4 with: name: export_template_${{ matrix.target }}_macos_x86_64 + path: "./" - name: Download ${{ matrix.target }} arm64 export_template uses: actions/download-artifact@v4 with: name: export_template_${{ matrix.target }}_macos_arm64 + path: "./" - name: Create macos universal binary uses: ./.github/actions/create-macos-universal-binary diff --git a/.github/workflows/build_android.yml b/.github/workflows/build_android.yml index c558a17a8..53c777414 100644 --- a/.github/workflows/build_android.yml +++ b/.github/workflows/build_android.yml @@ -98,3 +98,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: export_template_android_all + path: "bin/*" diff --git a/.github/workflows/build_ios.yml b/.github/workflows/build_ios.yml index 1bfc5f2a2..4b3bef588 100644 --- a/.github/workflows/build_ios.yml +++ b/.github/workflows/build_ios.yml @@ -51,3 +51,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: export_template_ios_all + path: "bin/*" diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 3a90d1751..2a67a58f3 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -80,3 +80,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.cache-name }} + path: "bin/*" diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index 7fd42a9a0..5972612a8 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -108,3 +108,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.cache-name }} + path: "bin/*" diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 6c036e871..9ad8ef0f5 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -95,3 +95,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{ matrix.cache-name }} + path: "bin/*"