Skip to content

Commit d5a12d8

Browse files
committed
reset version after failed auto-release attempts did nothing
1 parent 4a9b3db commit d5a12d8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
git config user.name "github-actions"
4747
git config user.email "[email protected]"
48-
git commit -am "Bump version to ${{ steps.version.outputs.bump }}"
4948
VERSION=$(ruby -e "require './lib/${{ env.GEM_NAME }}/version'; puts ${{ env.GEM_CLASS_NAME }}::VERSION")
49+
git commit -am "Bump version to $VERSION"
5050
git tag "v$VERSION"
5151
git push origin main "v$VERSION"

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
query_packwerk (0.2.2.pre)
4+
query_packwerk (0.1.0)
55
coderay
66
packwerk
77
parse_packwerk

lib/query_packwerk/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# frozen_string_literal: true
33

44
module QueryPackwerk
5-
VERSION = '0.2.2.pre'
5+
VERSION = '0.1.0'
66
end

0 commit comments

Comments
 (0)