Skip to content

Commit

Permalink
FEAT: Add release please releaser (#238)
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Webb <[email protected]>
  • Loading branch information
damacus authored Apr 4, 2022
1 parent 8e59c53 commit 32cf4b8
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .github/workflows/please-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
on:
push:
branches:
- main

name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: ruby
package-name: kitchen-azurerm
version-file: lib/kitchen/version.rb
2 changes: 1 addition & 1 deletion kitchen-azurerm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "kitchen-azurerm"
spec.version = "1.10.2"
spec.version = KitchenAzureRM::VERSION
spec.authors = ["Stuart Preston"]
spec.email = ["[email protected]"]
spec.summary = "Test Kitchen driver for Azure Resource Manager."
Expand Down
3 changes: 3 additions & 0 deletions lib/kitchen/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module KitchenAzureRM
VERSION = "1.10.2".freeze
end

0 comments on commit 32cf4b8

Please sign in to comment.