zilkey / auto_tagger
- Source
- Commits
- Network (5)
- Issues (10)
- Downloads (3)
- Wiki (1)
- Graphs
-
Branch:
master
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Helps you automatically create tags for each stage in a multi-stage deploment and deploy from the latest tag from the previous environment
Sort by:
Priority
Priority
|
Votes
Votes
|
Last Updated
Last Updated
Loading…
-
auto tagger should not add refs to the tags directory
2 comments Created 19 days ago by zilkeyMaybe production tags are special.
Some useful git commands to make this happen:
git update-ref refs/autotags/staging/20080505 HEAD git rev-parse refs/autotags/staging/20080505 git checkout refs/autotags/staging/20080505 git log --decorate git show --pretty=format:%d SHAComments
-
user should be able to easily see state of releases
0 comments Created 7 days ago by zilkeyComments
-
for example, you are testing a deploy script, and don't want to create 100 tags.
Comments
-
autotagger can cause deploys to fail if the tag was pushed but the ref was not
0 comments Created 7 months ago by zilkeyto reproduce:
git commit -m "some changes"
autotag ci # => this pushes the tag to the remote repository
cap deploy # => sets it to the latest ci tag, which references a ref that doesn't existbetter behavior would be:
- check to see if the ref is in the remote
- if not, print a message like "did you forget to git push?" and run git status
Comments
-
it should still push the text file to the branch, even when an explicit branch wasn't set
1 comment Created 2 months ago by zilkey -
add ability to add custom commit messages to autotag executable
0 comments Created 7 days ago by zilkeyComments
-
add ability to add custom commit messages to capistrano tasks
0 comments Created 7 days ago by zilkeyComments
-
release_tagger:print_latest_tags fetches from origin multiple times
0 comments Created 7 days ago by zilkeyComments
-
Comments
-
Comments





People will have tags from current ci / staging that need to be promoted, so there has to be a conversion script
Or - just tell people to deploy from a manual tag / ref