release-tracker-action
release-tracker-action copied to clipboard
A GitHub Action to maintain tags pointing at the latest major and minor versions of a repository
Hi, it seems to fail to create v1 while it successfully create other tags. Here: https://github.com/a5k-testing/github-action-test/runs/4240313967 Log: ``` Run bewuethr/release-tracker-action@v1 with: update-latest: true update-minor: false env: GITHUB_TOKEN: *** Run if...
Looking at [gh-extension-precompile](https://github.com/cli/gh-extension-precompile/blob/b0da21c1042c79394bfb66a6c320bb1e360b876a/.github/workflows/release.yml), it looks like updating an existing tag might be simplified: ```sh gh api -X PATCH /repos/"$GITHUB_REPOSITORY"/git/refs/heads/"$major" -f sha="$GITHUB_SHA" ```