aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/dev_builds.yml25
1 files changed, 24 insertions, 1 deletions
diff --git a/.github/workflows/dev_builds.yml b/.github/workflows/dev_builds.yml
index df9cfdc..e1c2598 100644
--- a/.github/workflows/dev_builds.yml
+++ b/.github/workflows/dev_builds.yml
@@ -24,4 +24,27 @@ jobs:
with:
name: viper-windows-builds
path: |
- dist/*.exe \ No newline at end of file
+ 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