Skip to content

Commit 65b03ce

Browse files
committed
Add echos
1 parent 7e290fa commit 65b03ce

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,17 @@ jobs:
4343
run: |
4444
# Get the latest release tag
4545
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
46-
echo "Publishing version: $LATEST_TAG"
4746
4847
# Force clean the working directory and reset any changes
48+
echo "Cleaning working directory and resetting any changes"
4949
git clean -fd
5050
git reset --hard HEAD
5151
5252
# Force checkout the latest tag
53+
echo "Checking out latest tag: $LATEST_TAG"
5354
git checkout -f $LATEST_TAG
5455
56+
echo "Publishing version: $LATEST_TAG"
5557
npx lerna publish from-git --yes --dist-tag latest
5658
env:
5759
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)