@@ -193,7 +193,7 @@ jobs:
193193 find "$BUILD_DIR" -type f -iname "*.apk" ! -name "android-build-*.apk" -exec cp {} "$INSTALL_DIR" \;
194194
195195 - name : Create artifact
196- uses : actions/upload-artifact@v5
196+ uses : actions/upload-artifact@v7
197197 with :
198198 name : files_${{ matrix.qtarch }}
199199 path : ${{ github.workspace }}/install/
@@ -383,14 +383,18 @@ jobs:
383383 if : always()
384384 run : ccache --show-stats --verbose
385385
386- - name : Verify WebGPU app artifacts
386+ - name : Verify app artifacts
387387 run : |
388- test -f "$INSTALL_DIR/webgpu_app.html"
389- test -f "$INSTALL_DIR/webgpu_app.js"
390- test -f "$INSTALL_DIR/webgpu_app.wasm"
388+ test -f "$INSTALL_DIR/alpineapp/alpineapp.html"
389+ test -f "$INSTALL_DIR/alpineapp/alpineapp.js"
390+ test -f "$INSTALL_DIR/alpineapp/alpineapp.wasm"
391+ test -f "$INSTALL_DIR/alpineapp/logo_vertical_light_bg.png"
392+ test -f "$INSTALL_DIR/webgpu_app/webgpu_app.html"
393+ test -f "$INSTALL_DIR/webgpu_app/webgpu_app.js"
394+ test -f "$INSTALL_DIR/webgpu_app/webgpu_app.wasm"
391395
392396 - name : Create artifact
393- uses : actions/upload-artifact@v5
397+ uses : actions/upload-artifact@v7
394398 with :
395399 name : files_${{ matrix.config}}
396400 path : ${{ github.workspace }}/install/
@@ -451,9 +455,10 @@ jobs:
451455 run : |
452456 for config in wasm_mt wasm_mt_debug wasm_mt_lto; do
453457 cd "$GITHUB_WORKSPACE/github_page/$config"
454- wget -q https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/master/coi-serviceworker.min.js
455- for html in alpineapp. html webgpu_app .html; do
458+ for target in alpineapp webgpu_app; do
459+ html="$target/$target .html"
456460 test -f "$html"
461+ wget -q -O "$target/coi-serviceworker.min.js" https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/master/coi-serviceworker.min.js
457462 sed -i -e 's#<body onload="init()">#<body onload="init()"><script src="coi-serviceworker\.min\.js"></script>#g' "$html"
458463 done
459464 done
@@ -464,13 +469,13 @@ jobs:
464469 target : github_page
465470
466471 - name : Create Pages artifact
467- uses : actions/upload-pages-artifact@v4
472+ uses : actions/upload-pages-artifact@v5
468473 with :
469474 path : ${{github.workspace}}/github_page
470475
471476 - name : Setup Pages
472- uses : actions/configure-pages@v5
477+ uses : actions/configure-pages@v6
473478
474479 - name : Deploy to GitHub Pages
475480 id : deployment
476- uses : actions/deploy-pages@v4
481+ uses : actions/deploy-pages@v5
0 commit comments