anmol_cortex_client_ruby 0.1.2 → 0.1.3
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/test.yml +15 -2
- data/Gemfile.lock +1 -1
- data/lib/cortex_client/version.rb +1 -1
- metadata +1 -2
- data/.github/workflows/release.yml +0 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2fb8f82c575adb77120b965e0d388125ddc4ff94a8dd2d1be195867480a65ea0
|
|
4
|
+
data.tar.gz: 23df17c11e9cfc02212bd320ae9c7252096e6bf3e952b8a76e16a2ce4335409c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 648a5dab29be1384caded7e027890a5b00f065c9630cd4b85fdc1d7c3fbd468cf46a7f3c9aef754b3248ebb8762fe00a8054a820ea9b9f9c20efe38665f2934c
|
|
7
|
+
data.tar.gz: 921f50306ccbe1b380c1b59f1ba324d0492b6116c6dc32697004c50c1853103192a5ba33061172a8f30b3451a5565109d0aba4f04e70395ed0f6f6b4f0432f3a
|
data/.github/workflows/test.yml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
name:
|
|
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
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.
|
|
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
|
-
|