aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dev_builds.yml
blob: f2bb730ce18ab435c5f4c7f6ee4dbfed2362bba1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Development builds CI
on:
  push:
  pull_request:
    types: [opened, reopened]

jobs:
  build:
    name: "Create Windows development builds"
    runs-on: "windows-latest"
    steps:
      - name: Checkout repository
        uses: actions/checkout@v3
      - name: Setup Node environment
        uses: actions/setup-node@v3
        with:
          node-version: 16
      - name: Install dependencies
        run: npm install --force
      - name: Create builds
        run: npm run build:windows
      - name: Archive production artifacts
        uses: actions/upload-artifact@v3
        with:
          name: viper-windows-builds
          path: |
            dist/*.exe