mirror of
https://github.com/wez/wezterm.git
synced 2024-12-27 07:18:13 +03:00
18 lines
560 B
Bash
Executable File
18 lines
560 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
name="$1"
|
|
|
|
notes=$(cat <<'EOT'
|
|
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"
|