Skip to content

Commit 98a6b26

Browse files
committed
fix: Corrects library autoversioning
1 parent 1528067 commit 98a6b26

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/gem.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ jobs:
3232
bundle install
3333
TRACE="$TRACE" GEM_TOKEN="$GEM_TOKEN" ./ci/publish-gem.sh "$REGISTRY"
3434
shell: bash
35+
env:
36+
GEM_NAME: linear-cli

.release-please-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"extra-files": [
1212
{
1313
"type": "generic",
14-
"path": "lib/linear/version.rb"
14+
"path": "lib/linear/cli/version.rb"
1515
},
1616
{
1717
"type": "generic",

Readme.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,13 @@ The project uses Minitest and RuboCop. Run tests with Rake:
218218
$ bundle exec rake
219219
----
220220

221+
=== Build the gem
222+
223+
[source,bash]
224+
----
225+
$ bundle exec gem build
226+
----
227+
221228
=== Conventional Commits (semantic commit messages)
222229

223230
This project follows the {conventional-commits} specification.

lib/linear/cli/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# frozen_string_literal: true
22

3+
# x-release-please-start-version
34
module Rubyists
45
module Linear
5-
# x-release-please-start-version
66
VERSION = '2.0.1'
7-
# x-release-please-end
87
end
98
end
9+
# x-release-please-end

0 commit comments

Comments
 (0)