diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2022-01-10 12:20:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-10 18:20:15 +0100 |
| commit | 5cf0519928a99fa976623981991a4b8d1b0b3eb9 (patch) | |
| tree | 426ed91efad90a39acdacacc935f1b8498d8447d /.github/workflows | |
| parent | 5dce5c14e410c595e53869d6d595d88db1dbf474 (diff) | |
add deb and rpm building (#1501)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7b7e6d6d..b03df905 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,9 @@ jobs: - uses: actions/setup-node@v1 with: node-version: '16.x' - + - uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.1 - uses: actions/cache@v2 id: pip-cache with: @@ -79,6 +81,7 @@ jobs: make dist env: BUILD: linux + INKSTITCH_GPG_KEY: ${{ secrets.INKSTITCH_GPG_KEY }} - uses: actions/upload-artifact@v2 with: name: inkstitch-linux @@ -236,6 +239,9 @@ jobs: prerelease: "${{env.prerelease}}" title: "${{env.title}}" files: | - artifacts/*.zip artifacts/*.exe artifacts/*.pkg + artifacts/*.deb + artifacts/*.rpm + artifacts/*.tar.xz + artifacts/*.sh |
