mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 04:56:12 +03:00
ci: nth time's the charm for winget tag pr thing
This commit is contained in:
parent
608750d5e0
commit
c2fee76638
9
.github/workflows/gen_windows_tag.yml
vendored
9
.github/workflows/gen_windows_tag.yml
vendored
@ -83,10 +83,13 @@ jobs:
|
||||
repository: "wez/winget-pkgs"
|
||||
path: "winget-pkgs"
|
||||
token: "${{ secrets.GH_PAT }}"
|
||||
- name: "Setup email for winget repo"
|
||||
shell: bash
|
||||
run: "cd winget-pkgs && git config user.email wez@wezfurlong.org"
|
||||
- name: "Setup name for winget repo"
|
||||
shell: bash
|
||||
run: "cd winget-pkgs && git config user.name 'Wez Furlong'"
|
||||
- name: "Create winget manifest and push to fork"
|
||||
env:
|
||||
GIT_AUTHOR_EMAIL: wez@wezfurlong.org
|
||||
GIT_AUTHOR_NAME: Wez Furlong
|
||||
shell: bash
|
||||
run: "bash ci/make-winget-pr.sh winget-pkgs WezTerm-*.exe"
|
||||
- name: "Submit PR"
|
||||
|
@ -569,13 +569,17 @@ cargo build --all --release""",
|
||||
"token": "${{ secrets.GH_PAT }}",
|
||||
},
|
||||
),
|
||||
RunStep(
|
||||
"Setup email for winget repo",
|
||||
"cd winget-pkgs && git config user.email wez@wezfurlong.org",
|
||||
),
|
||||
RunStep(
|
||||
"Setup name for winget repo",
|
||||
"cd winget-pkgs && git config user.name 'Wez Furlong'",
|
||||
),
|
||||
RunStep(
|
||||
"Create winget manifest and push to fork",
|
||||
"bash ci/make-winget-pr.sh winget-pkgs WezTerm-*.exe",
|
||||
env={
|
||||
"GIT_AUTHOR_NAME": "Wez Furlong",
|
||||
"GIT_AUTHOR_EMAIL": "wez@wezfurlong.org",
|
||||
},
|
||||
),
|
||||
RunStep(
|
||||
"Submit PR",
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
set -x
|
||||
set -xe
|
||||
|
||||
winget_repo=$1
|
||||
setup_exe=$2
|
||||
|
Loading…
Reference in New Issue
Block a user