From 663a7ba97959de4f657e747717b5fe808fed6648 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 2 Aug 2020 10:12:24 +0200 Subject: [PATCH] Create dashboardBuild.yml --- .github/workflows/dashboardBuild.yml | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/dashboardBuild.yml diff --git a/.github/workflows/dashboardBuild.yml b/.github/workflows/dashboardBuild.yml new file mode 100644 index 0000000..3f012ff --- /dev/null +++ b/.github/workflows/dashboardBuild.yml @@ -0,0 +1,32 @@ +name: Build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: windows-latest + + strategy: + matrix: + node-version: [14.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: yarn --network-timeout 1000000000 + - name: Package for Windows + run: yarn pack:win + - name: Upload a Build Artifact + uses: actions/upload-artifact@v2 + with: + name: Winx64_executable + path: dist/win-unpacked