honeybee-openstudio 2.20.3 → 2.20.4

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: 8d40218a1bff789b24eefd2531606d7728986dee266162ea9c45962ebd24fb9d
4
- data.tar.gz: 6a574ebd0c43c4ce86a81a905b9b34d43215986ff33551b1aa1d2049a5730fd1
3
+ metadata.gz: 82da49031ed053640899cd6e7e07d4b8cdab112705facb122e906c5b5f2c333a
4
+ data.tar.gz: d43ccc2d031e7ee5b9c780132ab030a821e37471f5780d7ae0900a94b7909450
5
5
  SHA512:
6
- metadata.gz: 81d1f39d2d9f4266b8c66c9a10c7a6213899aa234b30417205bfb79d92488a703065cf94e63dcb3975e86b3320149d7b22f1c200247d28c43a0287365ec361b0
7
- data.tar.gz: 9cd9273a6ad6e63b9f5f5e4657d9754228234ba960bce78fdc5a241f58df6b06b316bc6c7732562f4c645509e1944ca71918b2ffe0ee05b8a10a7097523fd638
6
+ metadata.gz: 742ca78b6e6fd4fafd8bdcc8dfb5f2ea3b53f49eb99bc1af5d2b502d41d93891d3941cbc188fad644a68a68d42375567cf7473ca8950fad5992a96e4320403b8
7
+ data.tar.gz: 005e4ae015e7ac691d07c4abab765d32a0593b46c5ed627b5f919911bbfdccbcd4366f5a8f4a8087dbca14f58133a4daa57730c11488ba34265a3866c6292479
@@ -54,3 +54,19 @@ jobs:
54
54
  uses: dawidd6/action-publish-gem@v1
55
55
  with:
56
56
  api_key: ${{secrets.RUBYGEMS_API_KEY}}
57
+ - name: Update lbt-grasshopper
58
+ if: steps.semantic.outputs.new_release_published == 'true'
59
+ env:
60
+ RELEASE_TAG: ${{ steps.semantic.outputs.new_release_version }}
61
+ DISPATCH_URL: https://api.github.com/repos/ladybug-tools/lbt-grasshopper/dispatches
62
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
63
+ run: |
64
+ curl -X POST $DISPATCH_URL \
65
+ -H "Accept: application/vnd.github.everest-preview+json" \
66
+ -d '{
67
+ "event_type": "honeybee_openstudio_gem_release",
68
+ "client_payload": {
69
+ "version" : "'$RELEASE_TAG'"
70
+ }
71
+ }' \
72
+ -u ladybugbot:$GH_TOKEN
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'honeybee-openstudio'
7
- spec.version = '2.20.3'
7
+ spec.version = '2.20.4'
8
8
  spec.authors = ['Tanushree Charan', 'Dan Macumber', 'Chris Mackey', 'Mostapha Sadeghipour Roudsari']
9
9
  spec.email = ['tanushree.charan@nrel.gov', 'chris@ladybug.tools']
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: honeybee-openstudio
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.20.3
4
+ version: 2.20.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanushree Charan
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: exe
13
13
  cert_chain: []
14
- date: 2021-07-19 00:00:00.000000000 Z
14
+ date: 2021-07-20 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -148,7 +148,6 @@ executables: []
148
148
  extensions: []
149
149
  extra_rdoc_files: []
150
150
  files:
151
- - ".github/workflows/cd.yml"
152
151
  - ".github/workflows/ci.yaml"
153
152
  - ".gitignore"
154
153
  - ".releaserc.json"
@@ -1,32 +0,0 @@
1
- name: CD
2
-
3
- on:
4
- release:
5
- types: [published]
6
-
7
- jobs:
8
- dispatch_schema:
9
- name: Dispatch Schema to Clients
10
- runs-on: ubuntu-latest
11
-
12
- strategy:
13
- matrix:
14
- client_repo:
15
- - ladybug-tools/lbt-grasshopper
16
-
17
- steps:
18
- - name: Send repo dispatch to lbt-grasshopper
19
- env:
20
- RELEASE_TAG: ${{ github.event.release.tag_name }}
21
- DISPATCH_URL: https://api.github.com/repos/${{ matrix.client_repo }}/dispatches
22
- GH_TOKEN: ${{ secrets.GH_TOKEN }}
23
- run: |
24
- curl -X POST $DISPATCH_URL \
25
- -H "Accept: application/vnd.github.everest-preview+json" \
26
- -d '{
27
- "event_type": "honeybee_openstudio_gem_release",
28
- "client_payload": {
29
- "version" : "'$RELEASE_TAG'"
30
- }
31
- }' \
32
- -u ladybugbot:$GH_TOKEN