bens-hello-world 0.3.0 → 0.3.1

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: de5e4980cf622b046208042671f1032de6da7a170f7bbc686885ed352cfa22e0
4
- data.tar.gz: 9da3da6211b75ffb1ad24a5c34108e64cd64cfa3971c7c0ea9dd3073e1eea7a6
3
+ metadata.gz: 1950e995a6c8e01bcc403d8a99c97eae3e83370504f74fb929511bb9c78973f1
4
+ data.tar.gz: 53bc04a87b5f91744609642529d6e87c4b7e87ee5ebe99c8ab3d2701f19d59f2
5
5
  SHA512:
6
- metadata.gz: f155af84abbf879c1d49a1c8a73ed8b423446f670af42fe92998721b672aa24e5008826c0fbfe4026f77d99f795d1e3799ea7c453c9addc6d14f413f6f1b3385
7
- data.tar.gz: 5224831c2eb0b6d20622b80c0d9e806c0de549a7ba95b1949c28e5b0e1b18942af628dd0604dc2627700a2ba8abf331be3b1829e5e2bf64ab15694e3b354865b
6
+ metadata.gz: 8bed2da682afa8faa4c2489e213c208d98c33ff71b23c12e17914db704bbeb5fe3a270d567a8bee495733e2bf3384913594a47351d7b30896b00b2f4fd6b5ecd
7
+ data.tar.gz: d8f2e7e3c732ed430882112efb317cfa1b3cbfd6e32c66eb72ba86f04fcd90b2c1cd349cc7342b9907d2ba8b092976d71127e8abe9ddcf61ffc1fc66d4f2d6f8
@@ -0,0 +1,46 @@
1
+
2
+ name: manual-release
3
+
4
+ on:
5
+ workflow_dispatch:
6
+ inputs:
7
+ logLevel:
8
+ description: 'Log level'
9
+ required: true
10
+ default: 'warning'
11
+ tags:
12
+ description: 'Test scenario tags'
13
+
14
+ jobs:
15
+ manual-release:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+
19
+ # Checkout code if release was created
20
+ - uses: actions/checkout@v2
21
+ # checks out the default branch (which is master)
22
+
23
+ # Setup ruby if a release was created
24
+ - uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: 3.0.0
27
+ # Bundle install
28
+ - run: bundle install
29
+
30
+ ## One can choose the publish the gem when the release is created too
31
+ - name: publish gem
32
+ run: |
33
+ mkdir -p $HOME/.gem
34
+ touch $HOME/.gem/credentials
35
+ chmod 0600 $HOME/.gem/credentials
36
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
37
+ gem build *.gemspec
38
+ gem push *.gem
39
+ env:
40
+ # Make sure to update the secret name
41
+ # if yours isn't named RUBYGEMS_AUTH_TOKEN
42
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
43
+
44
+
45
+
46
+
@@ -34,19 +34,19 @@ jobs:
34
34
  - run: bundle install
35
35
  if: ${{ steps.release.outputs.release_created }}
36
36
 
37
- ## One can choose the publish the gem when the release is created too
38
- - name: publish gem
39
- run: |
40
- mkdir -p $HOME/.gem
41
- touch $HOME/.gem/credentials
42
- chmod 0600 $HOME/.gem/credentials
43
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
44
- gem build *.gemspec
45
- gem push *.gem
46
- env:
47
- # Make sure to update the secret name
48
- # if yours isn't named RUBYGEMS_AUTH_TOKEN
49
- GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
50
- if: ${{ steps.release.outputs.release_created }}
37
+ # ## One can choose the publish the gem when the release is created too
38
+ # - name: publish gem
39
+ # run: |
40
+ # mkdir -p $HOME/.gem
41
+ # touch $HOME/.gem/credentials
42
+ # chmod 0600 $HOME/.gem/credentials
43
+ # printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
44
+ # gem build *.gemspec
45
+ # gem push *.gem
46
+ # env:
47
+ # # Make sure to update the secret name
48
+ # # if yours isn't named RUBYGEMS_AUTH_TOKEN
49
+ # GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
50
+ # if: ${{ steps.release.outputs.release_created }}
51
51
 
52
52
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### [0.3.1](https://www.github.com/benkoshy/bens-hello-world/compare/v0.3.0...v0.3.1) (2021-07-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add manual release ([df810f3](https://www.github.com/benkoshy/bens-hello-world/commit/df810f3fbda089e64d0be1e6d423de04ce2495d4))
9
+ * remove the action which pushes to ruby gems ([69febac](https://www.github.com/benkoshy/bens-hello-world/commit/69febacd7d7091823aeb25e89f2e08f84f7d0c1f))
10
+
3
11
  ## [0.3.0](https://www.github.com/benkoshy/bens-hello-world/compare/v0.2.10...v0.3.0) (2021-07-28)
4
12
 
5
13
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bens-hello-world (0.3.0)
4
+ bens-hello-world (0.3.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  module Bens
2
2
  module Hello
3
3
  module World
4
- VERSION = "0.3.0"
4
+ VERSION = "0.3.1"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bens-hello-world
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BK
@@ -19,6 +19,7 @@ extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
21
  - ".github/workflows/main.yml"
22
+ - ".github/workflows/manual-release.yml"
22
23
  - ".github/workflows/release.yml"
23
24
  - ".gitignore"
24
25
  - ".rspec"