Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
mainmethod0126 committed Oct 28, 2023
1 parent 233f049 commit 3df273b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/gradle-custom-plugin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3df273b

Please sign in to comment.