Skip to content

Commit

Permalink
Attempt to fix publish via CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
ksylvest committed Oct 27, 2024
1 parent 43382ee commit 58deb4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 17 deletions.
20 changes: 6 additions & 14 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:
- checkout
- ruby/install-deps
- run: bundle exec rake release

yard:
executor: default
steps:
Expand All @@ -55,19 +54,12 @@ workflows:
version: 2.1
build:
jobs:
- yard
- rspec
- rubocop
publish:
when:
and:
- equal: [main, << pipeline.git.branch >>]
- matches:
pattern: /^v\d+\.\d+\.\d+$/
value: << pipeline.git.tag >>
jobs:
- yard
- release:
requires:
- yard
- rspec
- rubocop
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
graphql-sources (1.5.0)
graphql-sources (1.5.1)
graphql
rails
zeitwerk
Expand Down Expand Up @@ -278,4 +278,4 @@ DEPENDENCIES
yard

BUNDLED WITH
2.5.17
2.5.22
2 changes: 1 addition & 1 deletion lib/graphql/sources/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module GraphQL
module Sources
VERSION = '1.5.0'
VERSION = '1.5.1'
end
end

0 comments on commit 58deb4e

Please sign in to comment.