summaryrefslogtreecommitdiff
path: root/.github/workflows/deb.yaml
diff options
context:
space:
mode:
authorMatthieu Pignolet <matthieu@matthieu-dev.xyz>2025-01-18 19:27:45 +0400
committerMatthieu Pignolet <matthieu@matthieu-dev.xyz>2025-01-18 19:27:45 +0400
commit8c0e3198ac47533d608f8d580b83db1c218a4e70 (patch)
tree6c0e81934983f8f89b492ab204f5a9b170b16bcc /.github/workflows/deb.yaml
parenta067a8b987669d2233c4e0176f666dc79b3fe9c1 (diff)
add CIv0.0.1
Diffstat (limited to '.github/workflows/deb.yaml')
-rw-r--r--.github/workflows/deb.yaml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/deb.yaml b/.github/workflows/deb.yaml
new file mode 100644
index 0000000..57e151f
--- /dev/null
+++ b/.github/workflows/deb.yaml
@@ -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