Skip to content

Commit

Permalink
chore: remove tag of unmanaged dependency check (#2626)
Browse files Browse the repository at this point in the history
After b/328660418 is resolved, we don't need the
`unmanaged-dependencies-check-latest` tag.
  • Loading branch information
JoeWang1127 authored Apr 8, 2024
1 parent e41bd8f commit ba648ce
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/create_additional_release_tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions: write-all
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Git
Expand All @@ -34,14 +34,3 @@ jobs:
git tag $TAG_NAME
git push origin $TAG_NAME
done
# Generate a tag for unmanaged dependencies check.
# Use fixed tag so that checks in handwritten libraries do not need to
# update the version.
CHECK_LATEST_TAG="unmanaged-dependencies-check-latest"
# delete and create the tag locally.
git tag --delete ${CHECK_LATEST_TAG}
git tag ${CHECK_LATEST_TAG}
# delete the tag in remote repo and push again.
git push --delete origin ${CHECK_LATEST_TAG}
git push origin ${CHECK_LATEST_TAG}

0 comments on commit ba648ce

Please sign in to comment.