twiglet 3.3.7 → 3.4.0

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: affcc4431661c8c826b37295be9d87c5051e760ec29748eec7ffa3ac6dec3f2f
4
- data.tar.gz: 363651efac38ad6a78953d1083e1c3aed3e36cf10730dcfd839a29f182853636
3
+ metadata.gz: 0df6b4dc38d469451c25999c9a8de0ea3019cc200121a21ad38ec387108a7a3f
4
+ data.tar.gz: ff9d7e9bae20b09b8415e812dd08c57b588ef0f69cf4cf6a2272b0dff9b8a044
5
5
  SHA512:
6
- metadata.gz: 2f5d7d70a7dd94bf992a4e821c336b97601fc0e2c52a2b7c241553834ce5ccc21db0fb3944b5a52f631e22829cf6257e91e0e1551f6d6db8eeaa51294622f349
7
- data.tar.gz: 5730b46609a5dc5d3ff9f85ad174aef2e811e1c3875c0960ac848b443053e2dbc8c11b8f141675aeac2adb927f5907881ef4c7a490c1c619c343340f921a4f08
6
+ metadata.gz: b5a765f4272d13bfc1cbbffd520bd3727ded119b31ffb341e5a7cfcddd64c33a4094ab8f4942683b9dedba954d089b9e021df64f0bea152358034c9de9d55494
7
+ data.tar.gz: 3744febe0fb3b8d7e550271940291fc8d6cdd9b27495a9363afa4a21d06133764695fc9d5f485e2e6c4706b09dae2f2f41d8e893553067df50cc78ecbb2d44fd
@@ -0,0 +1,34 @@
1
+ name: Create GitHub Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "master"
7
+
8
+ jobs:
9
+ create-release:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ - name: Set up Ruby
15
+ uses: ruby/setup-ruby@v1
16
+ with:
17
+ bundler-cache: true
18
+ - name: Get Ruby Version
19
+ id: get-ruby-version
20
+ run: echo "::set-output name=RUBY_VERSION::$(bundle exec ruby -e 'puts Twiglet::VERSION')"
21
+ - name: Create Release
22
+ uses: actions/github-script@v5
23
+ env:
24
+ RUBY_VERSION: ${{ steps.get-ruby-version.outputs.RUBY_VERSION }}
25
+ with:
26
+ result-encoding: string
27
+ script: |
28
+ const { RUBY_VERSION } = process.env
29
+ github.rest.repos.createRelease({
30
+ owner: context.repo.owner,
31
+ repo: context.repo.repo,
32
+ tag_name: RUBY_VERSION,
33
+ generate_release_notes: true,
34
+ })
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Twiglet
4
- VERSION = '3.3.7'
4
+ VERSION = '3.4.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twiglet
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.7
4
+ version: 3.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-05 00:00:00.000000000 Z
11
+ date: 2021-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json-schema
@@ -90,6 +90,7 @@ files:
90
90
  - ".github/CODEOWNERS"
91
91
  - ".github/dependabot.yml"
92
92
  - ".github/workflows/codeql-analysis.yml"
93
+ - ".github/workflows/create-github-release.yml"
93
94
  - ".github/workflows/dobby-actions.yml"
94
95
  - ".github/workflows/gem-publish.yml"
95
96
  - ".github/workflows/ruby.yml"