From 3df273b0b41b278a88d143ef8106130d0e4c1ee5 Mon Sep 17 00:00:00 2001 From: wusubsin Date: Sun, 29 Oct 2023 01:03:42 +0900 Subject: [PATCH] temp --- .github/workflows/gradle-custom-plugin-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gradle-custom-plugin-release.yml b/.github/workflows/gradle-custom-plugin-release.yml index 78716d6..cef035e 100644 --- a/.github/workflows/gradle-custom-plugin-release.yml +++ b/.github/workflows/gradle-custom-plugin-release.yml @@ -36,10 +36,10 @@ jobs: echo "ls $(ls ${{ github.workspace }})" # I have determined that there is no need to include metadata in the tagging information - temp_major=`node -p "const p = require('${{ github.workspace }}/version.json'); p.major;"` - temp_minor=`node -p "const p = require('${{ github.workspace }}/version.json'); p.minor;"` - temp_patch=`node -p "const p = require('${{ github.workspace }}/version.json'); p.patch;"` - temp_prereleaseVersion=`node -p "const p = require('${{ github.workspace }}/version.json'); p.prereleaseVersion;"` + temp_major=`node -p "const p = require('${{ github.workspace }}/app/version.json'); p.major;"` + temp_minor=`node -p "const p = require('${{ github.workspace }}/app/version.json'); p.minor;"` + temp_patch=`node -p "const p = require('${{ github.workspace }}/app/version.json'); p.patch;"` + temp_prereleaseVersion=`node -p "const p = require('${{ github.workspace }}/app/version.json'); p.prereleaseVersion;"` version="$temp_major$temp_minor$temp_patch$temp_prereleaseVersion" echo "VERSION = $version"