1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00
wezterm/ci/create-release.sh

5 lines
195 B
Bash
Executable File

#!/bin/bash
set -x
name="$1"
gh release view "$name" || gh release create --prerelease --notes "See https://wezfurlong.org/wezterm/changelog.html#$name for the changelog" --title "$name" "$name"