Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rmch91 committed Mar 1, 2024
1 parent 8c4c3e7 commit 57143cd
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/minor-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "version=2209.10.0" >> $GITHUB_ENV
else
echo "version=${{ github.event.inputs.version }}" >> $GITHUB_ENV
fi
fi;
- name: Create Release Branch
run: |
Expand All @@ -43,7 +43,7 @@ jobs:
else
version_part=$version
prerelease=""
fi
fi;
IFS='.' read -ra ADDR <<< "$version_part"
echo "major=${ADDR[0]}" >> $GITHUB_ENV
Expand All @@ -53,7 +53,7 @@ jobs:
if [[ -n $prerelease ]]; then
release_branch="${release_branch}-${prerelease// /-}"
fi
fi;
echo "RELEASE_BRANCH=$release_branch" >> $GITHUB_ENV
Expand Down Expand Up @@ -87,7 +87,8 @@ jobs:
echo "Error: The configuration file is not up to date. Regenerating dependencies..."
npm run generate:deps
npm run config:update
fi
fi;
npm run generate:deps
npm run test:all-schematics
Expand Down

0 comments on commit 57143cd

Please sign in to comment.