umbrellio-utils 1.14.0 → 1.14.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d29c478a9bce7022cddef6a1f54c3d11b48a23d65cc38fb385f75a751ea2022
4
- data.tar.gz: 256c08e41a5860e8c430959a7e4848f36e9001f954a42c1160e6beff6758c19c
3
+ metadata.gz: 2630729cf41d11cf9483cba3097d1c5d949a0042f28a1b32e31e9fa1e227a6ce
4
+ data.tar.gz: 446cdaae850b3b8f7907cd02c3ed728df5380faec78e28c41875289a902bd0dd
5
5
  SHA512:
6
- metadata.gz: d0b45c7757a482fb326731dbc5bb778c446a1dcd55c1ccc9c4f39d000196d66c541801ce93604ad11be5fc4aba974022d190b95e3cfc2ca19dc593523a4efafb
7
- data.tar.gz: '01385fd42fd555ca9ae3f3d59a2602b459ab9d2cf2d299f3ff5634caabe5e75a35e82d912287ba4c57f634bad3e99d96e3ec71f37b5ce45c062d58c948fe40c4'
6
+ metadata.gz: 9febf799edc6661b9f4ebf7187ed014a270371ae6cb0cd859199115038295ffeb65231e07ed26d5a6f17920272011e346075390c3f124a3ec99ccf69bfd81bd2
7
+ data.tar.gz: 0062de566624c25277163d639f62e8d1c8080a5ba0a18b3ea1304a296670758a0b92b7d721ab247ae1fcd9c91aef11f760642683ea12c43675bcc1dda3e09336
@@ -0,0 +1,42 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ gem:
10
+ runs-on: ubuntu-24.04
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ - uses: ruby/setup-ruby@v1
15
+ with:
16
+ ruby-version: "3.4"
17
+ bundler-cache: true
18
+
19
+ - name: Build gem
20
+ run: bundle exec rake build
21
+
22
+ - name: Push to RubyGems
23
+ run: gem push pkg/*.gem
24
+ env:
25
+ GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
26
+
27
+ github-release:
28
+ needs: gem
29
+ runs-on: ubuntu-24.04
30
+ permissions:
31
+ contents: write
32
+ steps:
33
+ - uses: actions/checkout@v4
34
+
35
+ - name: Create GitHub release
36
+ uses: actions/create-release@v1
37
+ with:
38
+ tag_name: ${{ github.ref_name }}
39
+ release_name: ${{ github.ref_name }}
40
+ generate_release_notes: true
41
+ env:
42
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
data/Gemfile.lock CHANGED
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- umbrellio-utils (1.14.0)
14
+ umbrellio-utils (1.14.2)
15
15
  memery (~> 1)
16
16
 
17
17
  GEM
@@ -42,7 +42,7 @@ module UmbrellioUtils
42
42
 
43
43
  def delete!
44
44
  run(:lo_unlink, oid)
45
- rescue PG::UndefinedObject
45
+ rescue Sequel::DatabaseError
46
46
  # Ignored
47
47
  end
48
48
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module UmbrellioUtils
4
- VERSION = "1.14.0"
4
+ VERSION = "1.14.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: umbrellio-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.14.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Umbrellio
@@ -33,6 +33,7 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - ".editorconfig"
35
35
  - ".github/clickhouse/clickhouse_keeper.xml"
36
+ - ".github/workflows/release.yml"
36
37
  - ".github/workflows/test.yml"
37
38
  - ".gitignore"
38
39
  - ".rspec"