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 +4 -4
- data/.github/workflows/release.yml +42 -0
- data/Gemfile.lock +1 -1
- data/lib/umbrellio_utils/large_object.rb +1 -1
- data/lib/umbrellio_utils/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2630729cf41d11cf9483cba3097d1c5d949a0042f28a1b32e31e9fa1e227a6ce
|
|
4
|
+
data.tar.gz: 446cdaae850b3b8f7907cd02c3ed728df5380faec78e28c41875289a902bd0dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
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.
|
|
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"
|