Skip to content

Commit f1b0368

Browse files
committed
update
1 parent 2cbeb21 commit f1b0368

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.github/workflows/build-windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ jobs:
4646
with:
4747
name: jsar-runtime-windows
4848
path: './build/output/release/x86_64-pc-windows-msvc'
49-

.github/workflows/release.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -100,23 +100,22 @@ jobs:
100100
runs-on: ubuntu-latest
101101
needs: [build-android, build-windows]
102102
steps:
103-
- name: Download Windows artifact
104-
uses: actions/download-artifact@v2
105-
with:
106-
name: jsar-runtime-windows
107-
path: release/windows
108-
103+
- uses: actions/checkout@v3
109104
- name: Download Android artifact
110105
uses: actions/download-artifact@v2
111106
with:
112107
name: jsar-runtime-android
113-
path: release/android
114-
108+
path: out/android
109+
- name: Download Windows artifact
110+
uses: actions/download-artifact@v2
111+
with:
112+
name: jsar-runtime-windows
113+
path: out/windows
115114
- name: Create Release
116115
uses: softprops/action-gh-release@v1
117116
with:
118117
files: |
119-
release/*
118+
out/*
120119
repo_token: ${{ secrets.GITHUB_TOKEN }}
121120
tag_name: ${{ github.event.inputs.tag_name }}
122121
title: Release ${{ github.event.inputs.tag_name }}

cmake/TransmuteCore.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ if (APPLE)
166166
elseif (ANDROID)
167167
set(TRANSMUTE_RELEASE_DEST aarch64-linux-android)
168168
elseif (WIN32)
169-
set(TRANSMUTE_RELEASE_DEST x86_64-windows-msvc)
169+
set(TRANSMUTE_RELEASE_DEST x86_64-pc-windows-msvc)
170170
endif()
171171

172172
# Install project's library

0 commit comments

Comments
 (0)