Add git-retag and woodpecker_server
This commit is contained in:
parent
78f73135b3
commit
2a51281db8
2 changed files with 14 additions and 0 deletions
12
.bin/git-retag
Executable file
12
.bin/git-retag
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
set -e
|
||||
|
||||
echo "Deleting tag from origin"
|
||||
git push --delete origin "$1"
|
||||
|
||||
echo "Deleting tag locally"
|
||||
git tag -d "$1"
|
||||
|
||||
echo "Recreating tag"
|
||||
git tag -s -m "$1" "$1"
|
|
@ -59,6 +59,8 @@ export TERMINAL="alacritty"
|
|||
|
||||
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
||||
|
||||
export WOODPECKER_SERVER="https://ci.serguzim.me"
|
||||
|
||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||
export ZSH="$ZDOTDIR/oh-my-zsh"
|
||||
|
||||
|
|
Loading…
Reference in a new issue