From d5a12d8384ff3de5c9ce8e418bd4e0e2a86bff56 Mon Sep 17 00:00:00 2001 From: Martin Emde Date: Fri, 13 Jun 2025 14:18:54 -0700 Subject: [PATCH] reset version after failed auto-release attempts did nothing --- .github/workflows/tag.yml | 2 +- Gemfile.lock | 2 +- lib/query_packwerk/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 943838f..d925486 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -45,7 +45,7 @@ jobs: run: | git config user.name "github-actions" git config user.email "github-actions@github.com" - git commit -am "Bump version to ${{ steps.version.outputs.bump }}" VERSION=$(ruby -e "require './lib/${{ env.GEM_NAME }}/version'; puts ${{ env.GEM_CLASS_NAME }}::VERSION") + git commit -am "Bump version to $VERSION" git tag "v$VERSION" git push origin main "v$VERSION" diff --git a/Gemfile.lock b/Gemfile.lock index b8c6ba1..ec9a7ec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - query_packwerk (0.2.2.pre) + query_packwerk (0.1.0) coderay packwerk parse_packwerk diff --git a/lib/query_packwerk/version.rb b/lib/query_packwerk/version.rb index c6373f6..34e8b7b 100644 --- a/lib/query_packwerk/version.rb +++ b/lib/query_packwerk/version.rb @@ -2,5 +2,5 @@ # frozen_string_literal: true module QueryPackwerk - VERSION = '0.2.2.pre' + VERSION = '0.1.0' end