From 7d4c1127ce0da671c5bb5d0636c67a8d30f3581e Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Tue, 24 Mar 2020 21:55:41 +0800 Subject: [PATCH] build: add build artifact to CI --- .github/workflows/CI.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 356a9f990e4290..a22de83e15769e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,6 +21,10 @@ jobs: run: npx envinfo - name: Build run: ./configure && make -j2 + - uses: actions/upload-artifact@v1 + with: + name: linux-binary + path: out/Release/node build-windows: runs-on: windows-latest steps: @@ -31,6 +35,10 @@ jobs: run: choco install nasm - name: Build run: ./vcbuild.bat + - uses: actions/upload-artifact@v1 + with: + name: windows-binary + path: out/Release/node.exe build-macOS: runs-on: macos-latest steps: @@ -39,6 +47,10 @@ jobs: run: npx envinfo - name: Build run: ./configure && make -j8 + - uses: actions/upload-artifact@v1 + with: + name: macOS-binary + path: out/Release/node lint-addon-docs: runs-on: ubuntu-latest steps: