We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88dce66 commit 8a82c04Copy full SHA for 8a82c04
.github/workflows/build-emscripten.yml
@@ -59,3 +59,18 @@ jobs:
59
- name: Build
60
if: success()
61
uses: DiligentGraphics/github-action/build@v1
62
+
63
+ - name: Pack Web Artifacts
64
+ if: ${{ success() && (matrix.host_name == 'Linux') && (matrix.build_type == 'Release') }}
65
+ working-directory: ${{github.workspace}}
66
+ run: |
67
+ python ./DiligentSamples/BuildTools/Emscripten/pack-artifacts.py -s ${{ env.DILIGENT_BUILD_DIR }}/DiligentSamples -o ./WebArtifacts
68
69
+ - name: Upload Web Artifacts
70
71
+ uses: actions/upload-artifact@v4
72
+ with:
73
+ name: WasmModules-DiligentGraphics.github.io
74
+ path: |
75
+ ${{github.workspace}}/WebArtifacts
76
+ retention-days: 14
0 commit comments