Update .forgejo/workflows/build+release.yml
This commit is contained in:
parent
1bc3dadd9c
commit
a8d605b954
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ jobs:
|
|||
name: Check if Version in package.json matches Tag
|
||||
run: |
|
||||
echo "Test"
|
||||
VERSION=$(cat package.json)
|
||||
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" )
|
||||
if test $VERSION != "${{ github.ref_name }}"; then
|
||||
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue