2021-12-06 19:11:26 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
name="$1"
|
2022-09-04 18:31:57 +03:00
|
|
|
|
2022-09-06 16:21:09 +03:00
|
|
|
notes=$(cat <<EOT
|
2022-09-04 18:31:57 +03:00
|
|
|
See https://wezfurlong.org/wezterm/changelog.html#$name for the changelog
|
|
|
|
|
|
|
|
If you're looking for nightly downloads or more detailed installation instructions:
|
|
|
|
|
|
|
|
[Windows](https://wezfurlong.org/wezterm/install/windows.html)
|
|
|
|
[macOS](https://wezfurlong.org/wezterm/install/macos.html)
|
|
|
|
[Linux](https://wezfurlong.org/wezterm/install/linux.html)
|
|
|
|
[FreeBSD](https://wezfurlong.org/wezterm/install/freebsd.html)
|
|
|
|
EOT
|
|
|
|
)
|
|
|
|
|
|
|
|
gh release view "$name" || gh release create --prerelease --notes "$notes" --title "$name" "$name"
|