Skip to content

Commit

Permalink
new CI task for bump minor
Browse files Browse the repository at this point in the history
  • Loading branch information
leonovk committed Aug 24, 2024
1 parent 686b5e0 commit f99d295
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/bump_minor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Bump minor version

on:
workflow_dispatch:

jobs:
bump:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: Install dependencies
run: bundle install

- name: bump
run: bundle exec rake bump_minor

- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
message: "bump new version"
add: .
committer_name: "GitHub Actions"
committer_email: "[email protected]"
push: true
branch: master

0 comments on commit f99d295

Please sign in to comment.