Release action fixes, pdfjs version fixed

This commit is contained in:
MichalKinas
2025-08-11 15:16:30 +02:00
parent 18fa874682
commit 6768b966bc
3 changed files with 5 additions and 6 deletions
@@ -17,7 +17,7 @@ runs:
run: |
VERSION_IN_PACKAGE_JSON=$(jq -cr '.version' < package.json)
if [[ ${{ inputs.branch_name }} =~ ^master.*?$ ]] ; then
if [[ ${{ inputs.branch_name }} =~ ^master.*?$ ]] || [[ "${{ inputs.branch_name }}" == release/* ]] ; then
NEW_LIBRARY_VERSION="$VERSION_IN_PACKAGE_JSON"
else
NEW_LIBRARY_VERSION="${VERSION_IN_PACKAGE_JSON}-${{ github.run_id }}"
-1
View File
@@ -38,7 +38,6 @@ on:
branches:
- master
- develop
- release/**
env:
BASE_URL: ${{ secrets.PIPELINE_ENV_URL }}