Skip to content

Commit

Permalink
🔨 Fix tag.sh gitignore updates
Browse files Browse the repository at this point in the history
  • Loading branch information
alecgibson committed Oct 23, 2023
1 parent 141b360 commit a7fb68f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ else
echo "Deploying version $VERSION"
fi

echo '!/dist' >> .gitignore
echo '!packages/floating-vue/dist' >> .gitignore

git checkout -b release-$VERSION
git add .gitignore
git add --all dist/
git add --all packages/floating-vue/dist/
git commit --message "Release version $VERSION"
git tag $VERSION
git push origin refs/tags/$VERSION

0 comments on commit a7fb68f

Please sign in to comment.