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 266e2a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ruby
name: Run tests

on: [push, pull_request]

Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
name: Ruby
name: Release to Rubygems

on:
push:
branches:
- master
workflow_run:
workflows: ["Run tests"]
branches: [master]
types:
- completed

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') && github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
Expand Down
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 266e2a6

Please sign in to comment.