Skip to content

Commit

Permalink
Fix missing paths
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed May 16, 2024
1 parent c607d61 commit d19892a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/assemble_export_templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: export_template_all_ios
path: "./"

- name: Move ios export template
shell: sh
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -82,6 +87,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: export_template_all_macos
path: "./"

- name: Move macos export template
shell: sh
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/assemble_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: export_template_ios_all
path: "./"

- name: Clone MoltenVK
uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/assemble_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: export_template_android_all
path: "bin/*"
1 change: 1 addition & 0 deletions .github/workflows/build_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: export_template_ios_all
path: "bin/*"
1 change: 1 addition & 0 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.cache-name }}
path: "bin/*"
1 change: 1 addition & 0 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.cache-name }}
path: "bin/*"
1 change: 1 addition & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.cache-name }}
path: "bin/*"

0 comments on commit d19892a

Please sign in to comment.