Skip to content

Commit 58deb4e

Browse files
committed
Attempt to fix publish via CircleCI
1 parent 43382ee commit 58deb4e

File tree

3 files changed

+9
-17
lines changed

3 files changed

+9
-17
lines changed

.circleci/config.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
- checkout
4444
- ruby/install-deps
4545
- run: bundle exec rake release
46-
4746
yard:
4847
executor: default
4948
steps:
@@ -55,19 +54,12 @@ workflows:
5554
version: 2.1
5655
build:
5756
jobs:
58-
- yard
5957
- rspec
6058
- rubocop
61-
publish:
62-
when:
63-
and:
64-
- equal: [main, << pipeline.git.branch >>]
65-
- matches:
66-
pattern: /^v\d+\.\d+\.\d+$/
67-
value: << pipeline.git.tag >>
68-
jobs:
59+
- yard
6960
- release:
70-
requires:
71-
- yard
72-
- rspec
73-
- rubocop
61+
filters:
62+
branches:
63+
ignore: /.*/
64+
tags:
65+
only: /^v\d+\.\d+\.\d+$/

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
graphql-sources (1.5.0)
4+
graphql-sources (1.5.1)
55
graphql
66
rails
77
zeitwerk
@@ -278,4 +278,4 @@ DEPENDENCIES
278278
yard
279279

280280
BUNDLED WITH
281-
2.5.17
281+
2.5.22

lib/graphql/sources/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module GraphQL
44
module Sources
5-
VERSION = '1.5.0'
5+
VERSION = '1.5.1'
66
end
77
end

0 commit comments

Comments
 (0)