This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/.github/workflows/dashboardBuild.yml

33 lines
722 B
YAML
Raw Normal View History

2020-08-02 10:57:46 +02:00
name: Dashboard Build
2020-08-02 10:12:24 +02:00
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 }}
2020-08-02 10:15:45 +02:00
- name: Install dependencies
run: cd Dashboard && yarn --network-timeout 1000000000
2020-08-02 10:12:24 +02:00
- name: Package for Windows
2020-08-02 10:20:10 +02:00
run: cd Dashboard && yarn pack:win
2020-08-02 10:12:24 +02:00
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: Winx64_executable
2020-08-02 10:20:10 +02:00
path: Dashboard/dist/win-unpacked