Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/bundler/rugged-1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oleander authored Dec 6, 2024
2 parents 0b77cff + 51e77d0 commit 3ba1a8e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,17 @@ jobs:
run: bundle install

- name: Increment version
run: gem bump --version patch --tag --push --skip-ci --release --file lib/git_fame/version.rb
run: gem bump --version patch --tag --skip-ci --release --file lib/git_fame/version.rb
env:
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}

- name: Install dependencies
run: bundle install
env:
BUNDLE_FROZEN: "false"

- name: Add and commit version bump
run: git commit -a --amend --no-edit

- name: Push changes
run: git push --tags
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:
git_fame (3.2.11)
git_fame (3.2.14)
activesupport (~> 7.0)
dry-initializer (~> 3.0)
dry-struct (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/git_fame/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GitFame
VERSION = "3.2.12"
VERSION = "3.2.14"
end

0 comments on commit 3ba1a8e

Please sign in to comment.