From 9a7d7f92e1f1e027cabacec82b29ea7ef9ff44fb Mon Sep 17 00:00:00 2001 From: Frank Bergmann Date: Wed, 17 Jan 2024 01:01:29 +0100 Subject: [PATCH] - save artifacts --- .github/workflows/emscripten.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/emscripten.yml b/.github/workflows/emscripten.yml index 572cfc6..5167506 100644 --- a/.github/workflows/emscripten.yml +++ b/.github/workflows/emscripten.yml @@ -97,4 +97,18 @@ jobs: # Build your program with the given configuration run: cmake --install ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} - + - name: dependencies archive + uses: actions/upload-artifact@v2 + with: + name: dependencies + path: ${{github.workspace}}/em-dependencies/* + retention-days: 90 + if-no-files-found: error + + - name: copasiji archive + uses: actions/upload-artifact@v2 + with: + name: copasiji + path: ${{github.workspace}}/bin-js/* + retention-days: 90 + if-no-files-found: error