action-push-tag
action-push-tag copied to clipboard
🔖 GitHub Action to push a Git tag
## What this PR does / Why we need it Adds two new optional variables: - ref: In case you want to target something other than HEAD - force: In...
## What happened Ran the `actions-ecosystem/action-push-tag@v1` Github Action unsuccessfully: ``` ... "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/_temp/_runner_file_commands":"/github/file_commands" -v "/home/runner/work/.../...":"/github/workspace" ... 12 fatal: not in a git directory ``` Probably...
## What you want to add Allow force for the tag, so that we can use this for walking tags. Eg - move the "dev" tag requires: git tag -f...
## What you want to add Allow optional specification of the commit sha to tag. ## Why this is needed In case we want to tag a previous commit or...
## What you want to add Currently, `GITHUB_TOKEN` is used for authentication while pushing tags. This issue is for requesting a feature to support the use of deploy keys for...
This matches the new default branch (and the example workflow in this project).
Hi! I've been randomly getting the error `remote: Repository not found` when running this action. Maybe 90% of the times my action is called, it works flawlessly, but the other...
## What this PR does / Why we need it Push with --no-verify so that the action does not fail for repositories with GIT LFS Fixes #15
## What happened If a repository uses GIT LFS, the push tag action fails with the following error ## What you expected to happen The push tag action should succeed...