Skip to content

Commit 37c8e99

Browse files
committed
Refactor GitHub Actions workflow for WebAssembly build
This commit refactors the GitHub Actions workflow for building the WebAssembly (WasmJS) application. It separates the build and distribution steps for the WasmJS app. Previously, only the `wasmJsBrowserDistribution` Gradle task was run. Now, the `app:web:build` task is executed first, followed by the `app:web:wasmJsBrowserDistribution` task. The job name for the distribution step has also been updated to "WasmJS App Distribution".
1 parent c9a91de commit 37c8e99

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/web.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
cache-read-only: false
3737
cache-overwrite-existing: true
3838
- name: "Build WasmJS App"
39+
run: gradle app:web:build
40+
- name: "WasmJS App Distribution"
3941
run: gradle app:web:wasmJsBrowserDistribution
4042
- name: Setup Pages
4143
uses: actions/configure-pages@v5

0 commit comments

Comments
 (0)