Skip to content

Commit

Permalink
Update ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
cygaar committed Dec 3, 2024
1 parent 01f1afd commit 0569dfc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "Publishing version: $LATEST_TAG"
# Clean any untracked files and reset any changes
git clean -fd
git reset --hard HEAD
# Checkout the latest tag
git checkout $LATEST_TAG
# Clean any untracked files that differ from the latest tag and reset any changes
git clean -fd
git reset --hard $LATEST_TAG
npx lerna publish from-git --yes --dist-tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit 0569dfc

Please sign in to comment.