aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/dev_builds.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/dev_builds.yml')
-rw-r--r--.github/workflows/dev_builds.yml50
1 files changed, 50 insertions, 0 deletions
diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml
new file mode 100644
index 0000000..e1c2598
--- /dev/null
+++ b/.github/workflows/dev_builds.yml
@@ -0,0 +1,50 @@
+name: Development builds CI
+on:
+ push:
+ pull_request:
+ types: [opened, reopened]
+
+jobs:
+ build-windows:
+ 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
+ build-linux:
+ name: "Create Linux development builds"
+ runs-on: "ubuntu-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:linux
+ - name: Archive production artifacts
+ uses: actions/upload-artifact@v3
+ with:
+ name: viper-linux-builds
+ path: |
+ dist/*.AppImage
+ dist/*.tar.gz
+ dist/*.deb
+ dist/*.rpm \ No newline at end of file