Fixed issue with version in CI

This commit is contained in:
Firq 2024-07-20 15:59:15 +02:00
parent cc55ec3a87
commit e4b0b87e9f
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
3 changed files with 11 additions and 2 deletions
.forgejo/workflows

View file

@ -11,7 +11,7 @@ jobs:
uses: https://code.forgejo.org/actions/checkout@v3
- name: Check if Version in package.json matches Tag
run: |
VERSION=$(cat package.json | grep "version" | sed 's/.*://' | tr -d , | tr -d \" | tr -d " " )
VERSION=$(npm pkg get version --workspaces=false | tr -d \")
if test $VERSION != "${{ github.ref_name }}"; then
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
exit 1