Updating a tag doesn't trigger a new build

Hello,

Circle CI doesn’t trigger a new build by tag, when I update an existing tag in github using the following code:

    git tag -d mytag
    git push origin :mytag
    git tag -a mytag -m "updated mytag"
    git push origin mytag

However, if I do a new commit and after that execute the code above, then build gets triggered by tag. Is it anyhow possible to always trigger a new build, when I update a tag?

My workflow for the reference from config.yml:

      my_workflow:
        jobs:
          - persist_repo:
              filters:
                branches:
                  ignore: /.*/
                tags:
                  only:
                    - /^mytag/
          - android_build_fi:
              filters:
                branches:
                  ignore: /.*/
                tags:
                  only:
                    - /^mytag/
              requires:
                  - persist_repo
1 Like