honeybee-openstudio 2.20.3 → 2.20.4
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/ci.yaml +16 -0
- data/honeybee-openstudio.gemspec +1 -1
- metadata +2 -3
- data/.github/workflows/cd.yml +0 -32
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82da49031ed053640899cd6e7e07d4b8cdab112705facb122e906c5b5f2c333a
|
|
4
|
+
data.tar.gz: d43ccc2d031e7ee5b9c780132ab030a821e37471f5780d7ae0900a94b7909450
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 742ca78b6e6fd4fafd8bdcc8dfb5f2ea3b53f49eb99bc1af5d2b502d41d93891d3941cbc188fad644a68a68d42375567cf7473ca8950fad5992a96e4320403b8
|
|
7
|
+
data.tar.gz: 005e4ae015e7ac691d07c4abab765d32a0593b46c5ed627b5f919911bbfdccbcd4366f5a8f4a8087dbca14f58133a4daa57730c11488ba34265a3866c6292479
|
data/.github/workflows/ci.yaml
CHANGED
|
@@ -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
|
data/honeybee-openstudio.gemspec
CHANGED
|
@@ -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.
|
|
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.
|
|
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-
|
|
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"
|
data/.github/workflows/cd.yml
DELETED
|
@@ -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
|