anmol_cortex_client_ruby 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d465c979c69e80e00269cfe41eb5bba9bc44d6187e0f7d90176e9ac638d60d8
4
- data.tar.gz: cb425425a6f24962ee3e573db7740dd2b52398a63849b78b7fd473f41beeb5f0
3
+ metadata.gz: 2fb8f82c575adb77120b965e0d388125ddc4ff94a8dd2d1be195867480a65ea0
4
+ data.tar.gz: 23df17c11e9cfc02212bd320ae9c7252096e6bf3e952b8a76e16a2ce4335409c
5
5
  SHA512:
6
- metadata.gz: '06469b0dab17fff72b3a1e09957e2f1582b3e10a644f555a3323b8bbddc74c50582890fc02570fbaf651a7c048a5ab3e97798b08e6e517ed117ccb9144da6f6f'
7
- data.tar.gz: 1e29a286bd36e75c6600a1b7b854252bac781aa93369a18c4ebc3af824c6cadb67c7a68dc638b2d471a416033e77b16b45aeee607310c419397003d28319b537
6
+ metadata.gz: 648a5dab29be1384caded7e027890a5b00f065c9630cd4b85fdc1d7c3fbd468cf46a7f3c9aef754b3248ebb8762fe00a8054a820ea9b9f9c20efe38665f2934c
7
+ data.tar.gz: 921f50306ccbe1b380c1b59f1ba324d0492b6116c6dc32697004c50c1853103192a5ba33061172a8f30b3451a5565109d0aba4f04e70395ed0f6f6b4f0432f3a
@@ -1,5 +1,5 @@
1
1
 
2
- name: Test Cortex Client
2
+ name: Push Cortex Client
3
3
  on: [push]
4
4
  jobs:
5
5
  test:
@@ -22,4 +22,17 @@ jobs:
22
22
  run: rspec
23
23
 
24
24
  - name: Lint check
25
- run: rubocop
25
+ run: rubocop
26
+
27
+ release:
28
+ runs-on: ubuntu-latest
29
+ needs: test
30
+ steps:
31
+ - uses: actions/checkout@v2
32
+ - name: Release Gem
33
+ if: contains(github.ref, 'refs/tags/v')
34
+ uses: cadwallion/publish-rubygems-action@master
35
+ env:
36
+ GITHUB_TOKEN: ${{secrets.GH_TOKEN}}
37
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
38
+ RELEASE_COMMAND: sh push-gem.sh
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- anmol_cortex_client_ruby (0.1.2)
4
+ anmol_cortex_client_ruby (0.1.3)
5
5
  google-protobuf (= 3.11.4)
6
6
  http (~> 4.1)
7
7
  snappy_ext (= 0.1.2)
@@ -1,3 +1,3 @@
1
1
  module CortexClient
2
- VERSION = '0.1.2'.freeze
2
+ VERSION = '0.1.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anmol_cortex_client_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kernel Plus
@@ -129,7 +129,6 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
- - ".github/workflows/release.yml"
133
132
  - ".github/workflows/test.yml"
134
133
  - ".gitignore"
135
134
  - ".rspec"
@@ -1,24 +0,0 @@
1
-
2
- name: Release cortex client
3
- on:
4
- workflow_run:
5
- workflows:
6
- - Test Cortex Client
7
- types:
8
- - completed
9
- push:
10
- tags:
11
- - '*'
12
-
13
- jobs:
14
- release:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v2
18
- - name: Release Gem
19
- uses: cadwallion/publish-rubygems-action@master
20
- env:
21
- GITHUB_TOKEN: ${{secrets.GH_TOKEN}}
22
- RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
23
- RELEASE_COMMAND: sh push-gem.sh
24
-