Skip to content

Commit

Permalink
v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dika committed Nov 4, 2024
1 parent 3d28568 commit d633a87
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ jobs:
run: |
gem build *.gemspec
- name: Publish gem to RubyGems
- name: Set up RubyGems credentials
run: |
mkdir -p ~/.gem # Create the .gem directory if it doesn't exist
echo "---" > ~/.gem/credentials
echo ":rubygems_api_key: ${RUBYGEMS_API_KEY}" >> ~/.gem/credentials
echo ":rubygems_api_key: ${{ secrets.RUBYGEMS_API_KEY }}" >> ~/.gem/credentials
chmod 600 ~/.gem/credentials
- name: Publish gem to RubyGems
run: |
gem push *.gem
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
gherkin_checker (1.1.4)
gherkin_checker (1.1.5)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/gherkin_checker/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GherkinChecker
VERSION = "1.1.4"
VERSION = "1.1.5"
end

0 comments on commit d633a87

Please sign in to comment.