mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 15:04:36 +03:00
68 lines
2.0 KiB
Bash
Executable File
68 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
set -xe
|
|
|
|
winget_repo=$1
|
|
setup_exe=$2
|
|
TAG_NAME=$(ci/tag-name.sh)
|
|
|
|
cd "$winget_repo" || exit 1
|
|
|
|
# First sync repo with upstream
|
|
git remote add upstream https://github.com/microsoft/winget-pkgs.git || true
|
|
git fetch upstream master --quiet
|
|
git checkout -b "$TAG_NAME" upstream/master
|
|
|
|
exehash=$(sha256sum -b ../$setup_exe | cut -f1 -d' ' | tr a-f A-F)
|
|
|
|
release_date=$(git show -s "--format=%cd" "--date=format:%Y-%m-%d")
|
|
|
|
# Create the directory structure
|
|
mkdir manifests/w/wez/wezterm/$TAG_NAME
|
|
|
|
cat > manifests/w/wez/wezterm/$TAG_NAME/wez.wezterm.installer.yaml <<-EOT
|
|
PackageIdentifier: wez.wezterm
|
|
PackageVersion: $TAG_NAME
|
|
MinimumOSVersion: 10.0.17763.0
|
|
InstallerType: inno
|
|
UpgradeBehavior: install
|
|
ReleaseDate: $release_date
|
|
Installers:
|
|
- Architecture: x64
|
|
InstallerUrl: https://github.com/wez/wezterm/releases/download/$TAG_NAME/$setup_exe
|
|
InstallerSha256: $exehash
|
|
ProductCode: '{BCF6F0DA-5B9A-408D-8562-F680AE6E1EAF}_is1'
|
|
ManifestType: installer
|
|
ManifestVersion: 1.1.0
|
|
EOT
|
|
|
|
cat > manifests/w/wez/wezterm/$TAG_NAME/wez.wezterm.locale.en-US.yaml <<-EOT
|
|
PackageIdentifier: wez.wezterm
|
|
PackageVersion: $TAG_NAME
|
|
PackageLocale: en-US
|
|
Publisher: Wez Furlong
|
|
PublisherUrl: https://wezfurlong.org/
|
|
PublisherSupportUrl: https://github.com/wez/wezterm/issues
|
|
Author: Wez Furlong
|
|
PackageName: WezTerm
|
|
PackageUrl: http://wezfurlong.org/wezterm
|
|
License: MIT
|
|
LicenseUrl: https://github.com/wez/wezterm/blob/main/LICENSE.md
|
|
ShortDescription: A GPU-accelerated cross-platform terminal emulator and multiplexer implemented in Rust
|
|
ReleaseNotesUrl: https://wezfurlong.org/wezterm/changelog.html#$TAG_NAME
|
|
ManifestType: defaultLocale
|
|
ManifestVersion: 1.1.0
|
|
EOT
|
|
|
|
cat > manifests/w/wez/wezterm/$TAG_NAME/wez.wezterm.yaml <<-EOT
|
|
PackageIdentifier: wez.wezterm
|
|
PackageVersion: $TAG_NAME
|
|
DefaultLocale: en-US
|
|
ManifestType: version
|
|
ManifestVersion: 1.1.0
|
|
EOT
|
|
|
|
git add --all
|
|
git diff --cached
|
|
git commit -m "New version: wez.wezterm version $TAG_NAME"
|
|
git push --set-upstream origin "$TAG_NAME" --quiet
|