diff options
author | Alystrasz <contact@remyraes.com> | 2022-08-07 22:07:22 +0200 |
---|---|---|
committer | Alystrasz <contact@remyraes.com> | 2022-08-07 22:07:22 +0200 |
commit | 20b19ddb3c1b7e416c837600dd3da08ef2316dec (patch) | |
tree | 13d9f3bbf2aaa6e8f5fc31ea5e9799da40910f3d /.github | |
parent | f0dae36e09272caae95ebecba443993a5f9a99fc (diff) | |
download | Viper-20b19ddb3c1b7e416c837600dd3da08ef2316dec.tar.gz Viper-20b19ddb3c1b7e416c837600dd3da08ef2316dec.zip |
feat: add Linux builds CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dev_builds.yml | 25 |
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 |