From a0ec7b633684e24e26d6ea26ea16b941ceb5c7f9 Mon Sep 17 00:00:00 2001 From: Alice Li Date: Tue, 23 May 2023 16:35:53 -0400 Subject: [PATCH] fix: fix release tag workflow to fetch all tags first --- .github/workflows/create_additional_release_tag.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/create_additional_release_tag.yaml b/.github/workflows/create_additional_release_tag.yaml index 96feb1e790..419cab0ac6 100644 --- a/.github/workflows/create_additional_release_tag.yaml +++ b/.github/workflows/create_additional_release_tag.yaml @@ -20,6 +20,9 @@ jobs: git config --local user.email "action@github.com" git config --local user.name "GitHub Action" + - name: Fetch all tags + run: git fetch --tags + - name: Create additional tags run: | ARTIFACT_IDS=('google-cloud-shared-dependencies' 'api-common' 'gax')