From 20b19ddb3c1b7e416c837600dd3da08ef2316dec Mon Sep 17 00:00:00 2001 From: Alystrasz Date: Sun, 7 Aug 2022 22:07:22 +0200 Subject: feat: add Linux builds CI --- .github/workflows/dev_builds.yml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to '.github/workflows') 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 -- cgit v1.2.3