From 8d33c8c558cccf5f54c27cef37258af3a644ad35 Mon Sep 17 00:00:00 2001 From: joe-davidson1802 Date: Sun, 6 Mar 2022 21:45:54 +0000 Subject: [PATCH] chore: push tag task --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d6c2955..d05595f 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,8 @@ Deploys a new tag for the repo. Requires: test ``` -export VERSION=`git rev-list --count HEAD`; -echo Adding git tag with version v0.0.${VERSION}; -git tag v0.0.${VERSION}; -git push origin v0.0.${VERSION}; +export VERSION=`git rev-list --count HEAD` +echo Adding git tag with version v0.0.${VERSION} +git tag v0.0.${VERSION} +git push origin v0.0.${VERSION} ```