From 9f7561a1b18a0c986b7cbf8f66fa158ef7c68c07 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Thu, 22 May 2025 15:24:08 +0100 Subject: [PATCH] chore: adding version to the title of the pr --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d9e17c8..cfee0d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,11 +23,9 @@ jobs: with: node-version: 18.x cache: "pnpm" - - name: Get package version - id: package-version - run: | - VERSION=$(node -p "require('./package.json').version") - echo "VERSION=$VERSION" >> $GITHUB_OUTPUT + - name: Get current version + id: get-version + run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT - run: pnpm install --frozen-lockfile - run: pnpm build - name: Create Release Pull Request or Publish