Skip to content

Commit

Permalink
Fix release script
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonk committed Oct 2, 2021
1 parent e4e852b commit 4a4afd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ if [ -n "$(git status --porcelain=v1 2>/dev/null)" ]; then
die "The repo has uncommitted changes"
fi

git tag -a "$EV" -m ":shipit: Release $EV"
git tag -a "$EV" -m "Release $EV"
git push origin "$EV"

rm -rf inform-slack
mkdir inform-slack
cp -a ../*.md ../LICENSE ../bin ../builders ../lib inform-slack
tar cvfz "inform-slack-${EV}.tgz" inform-slack
gh release create "$EV" "inform-slack-${EV}.tgz"
gh release create "$EV" -n '' -t '' "inform-slack-${EV}.tgz"

0 comments on commit 4a4afd0

Please sign in to comment.