Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 3 additions & 15 deletions .github/workflows/prod-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,21 +80,7 @@ jobs:
git config --global user.email "no-reply@noemail.local"
git checkout $BRANCH

- name: Verify git auth identity
run: |
echo "=== gh auth status ==="
gh auth status
echo ""
echo "=== Git credential helper config ==="
git config --global --get-regexp credential
echo ""
echo "=== Git remote URL ==="
git remote -v
echo ""
echo "=== Authenticated GitHub user ==="
gh api user --jq '.login'

- name: Version packages (dry run - no push)
- name: Version packages
run: |
# Generate new version and CHANGELOG entry and push it
npx lerna version --conventional-commits --git-remote origin --yes ${VERSION_BUMP:+$VERSION_BUMP --force-publish}
Expand All @@ -106,6 +92,8 @@ jobs:
needs: [pre-release-ci, version]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

- uses: actions/setup-node@v4
with:
Expand Down