This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
### Actions | |
# - git checkout master | |
# - git pull --rebase | |
# - List the PRs that have been merged to master since the last tag (according to git describe) | |
# - Ask for confirmation to tag and push. If confirmed: | |
# - generate a release tag based on timestamp | |
# - git push --tags |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
### Actions | |
# - git checkout master | |
# - git pull --rebase | |
# - List the PRs that have been merged to master since the last tag (according to git describe) | |
# ### Usage: |