Skip to content

Commit

Permalink
Bump to 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Jan 30, 2022
1 parent b7b5949 commit 71e39f6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
34 changes: 20 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,25 @@ jobs:
release:
name: release
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'Bump to')"
# if: ${{ !contains(github.event.head_commit.message, 'Bump to') }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
- name: Install dependencies
run: bundle install
- name: Configure Git
- name: debug
run: |
git config user.email "101073+guilhermef@users.noreply.github.com"
git config user.name "GH actions"
- name: push to RubyGems
env:
GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
run: bundle exec rake release
echo "${{toJSON(github.event)}}"
echo "${{ contains(github.event.head_commit.message, 'Bump to') }}"
echo "${{ !contains(github.event.head_commit.message, 'Bump to') }}"
# - uses: actions/checkout@v2
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: 3.1
# - name: Install dependencies
# run: bundle install
# - name: Configure Git
# run: |
# git config user.email "101073+guilhermef@users.noreply.github.com"
# git config user.name "GH actions"
# - name: push to RubyGems
# env:
# GEM_HOST_API_KEY: ${{ secrets.GEM_HOST_API_KEY }}
# run: bundle exec rake release
2 changes: 1 addition & 1 deletion lib/thumbor/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Thumbor
VERSION = '4.0.0'
VERSION = '4.0.1'
end

0 comments on commit 71e39f6

Please sign in to comment.