From a4ba1c12da032e15f1580ddb7d1e091ecd762f4a Mon Sep 17 00:00:00 2001 From: Alisson Souza <38736666+Alissonsz@users.noreply.github.com> Date: Wed, 6 Jul 2022 12:34:28 -0300 Subject: [PATCH] chore(gh-actions): Adds version bump and release actions (#2105) (#2106) Closes #2104 --- .github/workflows/bump-version.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 9bb2c74ed..5a8b5c66b 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -13,4 +13,6 @@ jobs: - run: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - run: git config user.name "$GITHUB_ACTOR" - run: VERSION=$(npm version patch -m "v%s") + - run: git tag ${VERSION} + - run: git push --follow-tags - run: git push --tags