cfndsl 1.3.5 → 1.3.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7799eef3550b148fd5961d700f7c5beea5e04632f474ba83c5a3675d193e8866
4
- data.tar.gz: 426ed1189abdc6b65c565d9dafcd406d1c58931ac052dd0488132a22e84a7481
3
+ metadata.gz: 1ceb84791ba82ab87bc436044190c38d88977e91ba3000a23eda817223a5a7a1
4
+ data.tar.gz: f70d20c384bffe9739301c6b3b8ba40ebe3d605de99b8a46ebe715e178492b30
5
5
  SHA512:
6
- metadata.gz: 6e2d29590aa9696c5e0f80da32ed0d6669186e92036976addecae4c38648235b5b5d3df3f4cdaa91351d4a7bdb578bac127b7ed1932355246b17c82f3f30a0b2
7
- data.tar.gz: 64a53ddd2ddc727685648b2e7f123c13270882999e504814d78ad3f2fc825f4291af6d8d35d5f33af48ffe8c8367e7c69c3a935dc4ab1583356631dc0e1532fa
6
+ metadata.gz: 19af4bc25b347cc61363cd6500ed59fb913182d5a4ce32c5c0754d5eca33bc78de168ebbb584d55e2f801a9a7076675b425b758c627bf4d2114646e5761b8ed8
7
+ data.tar.gz: 989bad5d7dc8a08011290f066d3de6fc9b082b6b6ec92604407497eae26c7aaf84782dadc89211691b9e8a0fbb3aabe8d53030613e3cf2bce064288986e1647a
@@ -1,11 +1,9 @@
1
- name: Spec and publish
1
+ name: Spec
2
2
 
3
3
  on:
4
4
  push:
5
5
  branches:
6
6
  - "**"
7
- tags:
8
- - 'v*'
9
7
  jobs:
10
8
  test:
11
9
 
@@ -28,11 +26,3 @@ jobs:
28
26
  run: bundle install
29
27
  - name: Run tests
30
28
  run: bundle exec rake
31
-
32
- - name: Publish Gem
33
- if: contains(github.ref, 'refs/tags/v')
34
- uses: cadwallion/publish-rubygems-action@master
35
- env:
36
- GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
37
- RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
38
- RELEASE_COMMAND: bundle exec rake release
@@ -0,0 +1,36 @@
1
+ name: Spec and publish
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+ jobs:
8
+ test:
9
+
10
+ runs-on: ubuntu-latest
11
+
12
+ strategy:
13
+ matrix:
14
+ ruby-version: ['3.0']
15
+
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - name: Set up Ruby ${{ matrix.ruby-version }}
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby-version }}
22
+ bundler-cache: true
23
+ - name: Update system gems
24
+ run: gem update --system
25
+ - name: Install dependencies
26
+ run: bundle install
27
+ - name: Run tests
28
+ run: bundle exec rake
29
+
30
+ - name: Publish Gem
31
+ if: contains(github.ref, 'refs/tags/v')
32
+ uses: cadwallion/publish-rubygems-action@master
33
+ env:
34
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
35
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
36
+ RELEASE_COMMAND: bundle exec rake release
data/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [1.3.5](https://github.com/cfndsl/cfndsl/tree/1.3.5) (2022-06-07)
3
+ ## [v1.3.5](https://github.com/cfndsl/cfndsl/tree/v1.3.5) (2022-06-07)
4
4
 
5
- [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.4...1.3.5)
5
+ [Full Changelog](https://github.com/cfndsl/cfndsl/compare/v1.3.4...v1.3.5)
6
6
 
7
7
  **Closed issues:**
8
8
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CfnDsl
4
- VERSION = '1.3.5'
4
+ VERSION = '1.3.6'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cfndsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steven Jack
@@ -53,6 +53,7 @@ extensions: []
53
53
  extra_rdoc_files: []
54
54
  files:
55
55
  - ".github/workflows/spec.yml"
56
+ - ".github/workflows/spec_publish.yml"
56
57
  - ".gitignore"
57
58
  - ".rubocop.yml"
58
59
  - CHANGELOG.md