chambermaid 0.4.1 → 0.5.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: 5f6943ccaff6b33633d9cee801822d739f222b1eb86dd63b154ad0ee5139a252
4
- data.tar.gz: 2a4bed5d0f0fe66048880f57e4ed1c7b62530bd1a6eabdc3227ea05e98528a4c
3
+ metadata.gz: f6d34e355553e694cc493b9fbae6200d0d508d4ada00f4e5f6b934a0582996a2
4
+ data.tar.gz: a02864caeeeddf4237aa412a2d8b53ffb626f301e7cd1d037287ae75d37d7c83
5
5
  SHA512:
6
- metadata.gz: a22085c2da52baec3bb93cd59f7cc524e3f87f974cfdf26a5f315eed7cb90002fdd315c3718aed15be0b6c253ec05fcab76137a86f96808dbc374eb205b948d3
7
- data.tar.gz: 2991226e4b8fb1021b2369e4b449967ce5d925d6e66f7d56fa64cc2c1d0e051c4ea4640d674a87d17b325a01724aa13e4491c95789d08fdb25e76ce6d4f13274
6
+ metadata.gz: 2777ce46568aeebb40defa53d0a3acaf64b8e5812ffc7b4381b19bf2318255990be65d28d8cd628664bdb4fc15e5c87bdaec924b3a01329e9acbb3567f0cd14b
7
+ data.tar.gz: b8e8ed1343b17c9d7db2c05f9569fff8eae5b958e9744f8561e315369727d3692baea182815e52072c03f6591d4d8260cc819c62c5df8795551722f06dad3549
@@ -0,0 +1,16 @@
1
+ name: commitlint
2
+ on:
3
+ - pull_request
4
+
5
+ jobs:
6
+ lint:
7
+ runs-on: ubuntu-latest
8
+ env:
9
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ with:
13
+ fetch-depth: 0
14
+ - uses: wagoid/commitlint-github-action@v1
15
+ with:
16
+ failOnWarnings: true
@@ -0,0 +1,46 @@
1
+ name: release
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+
7
+ jobs:
8
+ create-release:
9
+ runs-on: ubuntu-latest
10
+ env:
11
+ GITHUB_TOKEN: ${{ secrets.GHUB_PAT }}
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ with:
15
+ fetch-depth: 0
16
+ - uses: ridedott/release-me-action@master
17
+ id: get-version-number
18
+ with:
19
+ dry-run: true
20
+ - uses: actions/setup-ruby@v1
21
+ with:
22
+ ruby-version: "2.6"
23
+ - run: gem install bundler -v 2.1.2
24
+ - name: Set version.rb and Gemfile.lock
25
+ run: |
26
+ printf "module Chambermaid\n VERSION = \"$NEW_VERSION\"\nend" > lib/chambermaid/version.rb
27
+ bundle install
28
+ env:
29
+ NEW_VERSION: ${{ steps.get-version-number.outputs.version }}
30
+ - run: bundle exec rake build
31
+ - uses: ridedott/release-me-action@master
32
+ with:
33
+ commit-assets: |
34
+ ./lib/chambermaid/version.rb
35
+ ./Gemfile.lock
36
+ release-assets: |
37
+ ./pkg/*.gem
38
+ - name: publish to rubygems
39
+ run: |
40
+ mkdir -p ~/.gem
41
+ printf -- "---\n:rubygems_api_key: $GEM_HOST_API_KEY" > ~/.gem/credentials
42
+ chmod 0600 ~/.gem/credentials
43
+ gem push pkg/chambermaid-$NEW_VERSION.gem
44
+ env:
45
+ GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
46
+ NEW_VERSION: ${{ steps.get-version-number.outputs.version }}
@@ -0,0 +1,23 @@
1
+ ## [0.5.3](https://github.com/mileszim/chambermaid/compare/v0.5.2...v0.5.3) (2020-08-03)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **release:** use bash end of args with printf ([fbc0ae2](https://github.com/mileszim/chambermaid/commit/fbc0ae28961c40f984e6685e5feb33799934f510))
6
+
7
+ ## [0.5.2](https://github.com/mileszim/chambermaid/compare/v0.5.1...v0.5.2) (2020-08-03)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **release:** set rubygem api key into ~/.gem/credentials ([7faef58](https://github.com/mileszim/chambermaid/commit/7faef587631284c3bb89c22572b8bce9c31172d0))
12
+
13
+ ## [0.5.1](https://github.com/mileszim/chambermaid/compare/v0.5.0...v0.5.1) (2020-08-03)
14
+
15
+ ### Bug Fixes
16
+
17
+ - **release:** publish to rubygems on successful release ([e019c7d](https://github.com/mileszim/chambermaid/commit/e019c7df3f43c251a5542374cc9c869fc4b00d92))
18
+
19
+ # [0.5.0](https://github.com/mileszim/chambermaid/compare/v0.4.1...v0.5.0) (2020-08-03)
20
+
21
+ ### Features
22
+
23
+ - add commitlint and release workflow (#2) ([1159e69](https://github.com/mileszim/chambermaid/commit/1159e69e95701e4763fdbe08430d579c2a2a8440)), closes [#2](https://github.com/mileszim/chambermaid/issues/2)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- chambermaid (0.4.1)
4
+ chambermaid (0.5.4)
5
5
  aws-sdk-ssm (~> 1.85)
6
6
 
7
7
  GEM
@@ -1,3 +1,3 @@
1
1
  module Chambermaid
2
- VERSION = "0.4.1"
3
- end
2
+ VERSION = "0.5.4"
3
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chambermaid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Zimmerman
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-08-02 00:00:00.000000000 Z
11
+ date: 2020-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-ssm
@@ -59,9 +59,12 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".github/workflows/commitlint.yml"
63
+ - ".github/workflows/release.yml"
62
64
  - ".gitignore"
63
65
  - ".rspec"
64
66
  - ".travis.yml"
67
+ - CHANGELOG.md
65
68
  - CODE_OF_CONDUCT.md
66
69
  - Gemfile
67
70
  - Gemfile.lock
@@ -100,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
103
  - !ruby/object:Gem::Version
101
104
  version: '0'
102
105
  requirements: []
103
- rubygems_version: 3.1.2
106
+ rubygems_version: 3.0.3
104
107
  signing_key:
105
108
  specification_version: 4
106
109
  summary: Companion Ruby Gem for chamber cli