diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/deb.yml | 23 | 
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/deb.yml b/.github/workflows/deb.yml new file mode 100644 index 0000000..57e151f --- /dev/null +++ b/.github/workflows/deb.yml @@ -0,0 +1,23 @@ +name: Release + +on: +  push: +    tags:         +      - '*'  + +jobs: +  build: +    runs-on: ubuntu-latest +    steps: +    - uses: actions/checkout@v1 +    - uses: ruby/setup-ruby@v1 +      with: +        ruby-version: '3.3' # Not needed with a .ruby-version file +        bundler-cache: true # runs 'bundle install' and caches installed gems automatically +    - run: gem install fpm +    - run: ./build.sh +    - uses: actions/upload-artifact@v4 +      with: +        name: deb +        path: | +          *.deb
\ No newline at end of file  | 
