forked from wezterm/wezterm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable parts of actions that can (and should) only be run by wez.
- Loading branch information
1 parent
f0cff99
commit e72f65f
Showing
6 changed files
with
110 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,8 +136,3 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
shell: bash | ||
run: "bash ci/retry.sh gh release upload --clobber nightly wezterm-*.deb wezterm-*.xz *.sha256" | ||
- name: "Upload to gemfury" | ||
env: | ||
FURY_TOKEN: ${{ secrets.FURY_TOKEN }} | ||
shell: bash | ||
run: "for f in wezterm*.deb ; do curl -i -F package=@$f https://[email protected]/wez/ ; done" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,11 +103,6 @@ jobs: | |
run: "git config --global --add safe.directory /__w/wezterm/wezterm" | ||
- name: "checkout repo" | ||
uses: actions/checkout@v4 | ||
- name: "Upload to gemfury" | ||
env: | ||
FURY_TOKEN: ${{ secrets.FURY_TOKEN }} | ||
shell: bash | ||
run: "for f in wezterm*.deb ; do curl -i -F package=@$f https://[email protected]/wez/ ; done" | ||
- name: "Download artifact" | ||
uses: actions/download-artifact@v3 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,23 +102,3 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
shell: bash | ||
run: "bash ci/retry.sh gh release upload --clobber $(ci/tag-name.sh) WezTerm-*.zip WezTerm-*.exe *.sha256" | ||
- name: "Checkout winget-pkgs" | ||
uses: actions/checkout@v4 | ||
with: | ||
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 [email protected]" | ||
- 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" | ||
shell: bash | ||
run: "bash ci/make-winget-pr.sh winget-pkgs WezTerm-*.exe" | ||
- name: "Submit PR" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_PAT }} | ||
shell: bash | ||
run: 'cd winget-pkgs && gh pr create --fill --body "PR automatically created by release automation in the wezterm repo"' |
Oops, something went wrong.