From 79c7e7a181c65dae8ff2cb948443d77938c21b54 Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:23:31 -0600 Subject: [PATCH] fix(release-automation): :alien: Tags are not being created. Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39577d411..aeafe868d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,6 @@ on: pull_request: branches: - main - - rc/3.0-mv3 env: XDG_CACHE_HOME: ${{ github.workspace }}/.cache @@ -99,16 +98,19 @@ jobs: needs: [test] if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') steps: - - uses: google-github-actions/release-please-action@v3.7.3 + - uses: google-github-actions/release-please-action@v3.7.11 with: - command: manifest-pr changelog-notes-type: github + command: manifest-pr + include-v-in-tag: true + release-as: v3.0.0 + release-type: node release-assets: runs-on: ubuntu-latest needs: [test] if: | - (contains(github.ref, 'refs/tags/') || github.ref == 'refs/heads/rc/3.0-mv3') && + contains(github.ref, 'refs/tags/') && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') steps: - name: Check out Git repository