Browse Source

Publish artifacts

Rob Blanckaert 5 months ago
parent
commit
fe7a0fbd0f
1 changed files with 8 additions and 1 deletions
  1. 8 1
      .github/workflows/ci.yml

+ 8 - 1
.github/workflows/ci.yml

@@ -39,6 +39,9 @@ jobs:
       - name: Build all
         run: make all
 
+      - name: Build fallback
+        run: make build/v86-fallback.wasm
+
       - name: Fetch kvm-unit-test cache
         uses: actions/cache@v3
         id: cache-kvm-unit-test
@@ -124,8 +127,12 @@ jobs:
       - name: Get artifacts
         uses: actions/download-artifact@v3
         with:
+          name: v86
           path: build
 
+      - name: Display structure of downloaded files
+        run: ls -R
+
       - name: Release to GitHub
         uses: ncipollo/release-action@v1
         with:
@@ -133,5 +140,5 @@ jobs:
           tag: latest
           commit: master
           body: ${{ github.event.head_commit.message }}
-          artifacts: "build/v86/libv86*.js, build/v86/libv86*.js.map, build/v86/v86*.wasm"
+          artifacts: "build/libv86*.js,build/libv86*.js.map,build/v86*.wasm"
           prerelease: true