From 8c0e3198ac47533d608f8d580b83db1c218a4e70 Mon Sep 17 00:00:00 2001 From: Matthieu Pignolet Date: Sat, 18 Jan 2025 19:27:45 +0400 Subject: add CI --- .github/workflows/deb.yaml | 23 +++++++++++++++++++++++ .github/workflows/deb.yml | 23 ----------------------- 2 files changed, 23 insertions(+), 23 deletions(-) create mode 100644 .github/workflows/deb.yaml delete mode 100644 .github/workflows/deb.yml 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 diff --git a/.github/workflows/deb.yml b/.github/workflows/deb.yml deleted file mode 100644 index 57e151f..0000000 --- a/.github/workflows/deb.yml +++ /dev/null @@ -1,23 +0,0 @@ -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 -- cgit v1.2.3