Skip to content

Commit

Permalink
ci: wezterm-bin no longer exists
Browse files Browse the repository at this point in the history
  • Loading branch information
wez committed May 2, 2021
1 parent bff6815 commit 3f7122c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 32 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/gen_ubuntu16_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,6 @@ jobs:
prerelease: true
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: "Update AUR"
uses: KSXGitHub/github-actions-deploy-aur@master
with:
pkgname: "wezterm-bin"
pkgbuild: "PKGBUILD"
commit_username: "wez"
commit_email: "wez@wezfurlong.org"
ssh_private_key: "${{ secrets.AUR_SSH_PRIVATE_KEY }}"
commit_message: "Automated update to match latest tag"
- name: "Checkout linuxbrew tap"
uses: actions/checkout@v2
with:
Expand Down
23 changes: 0 additions & 23 deletions ci/generate-workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,28 +407,6 @@ def update_homebrew_tap(self):

return steps

def update_tagged_aur(self):
steps = []

if self.app_image:
# The AppImage build step also expands the PKGBUILD template
steps += [
ActionStep(
"Update AUR",
action="KSXGitHub/github-actions-deploy-aur@master",
params={
"pkgname": "wezterm-bin",
"pkgbuild": "PKGBUILD",
"commit_username": "wez",
"commit_email": "wez@wezfurlong.org",
"ssh_private_key": "${{ secrets.AUR_SSH_PRIVATE_KEY }}",
"commit_message": "Automated update to match latest tag",
},
)
]

return steps

def global_env(self):
env = {}
if "macos" in self.name:
Expand Down Expand Up @@ -512,7 +490,6 @@ def tag(self):
steps += self.test_all_release()
steps += self.package()
steps += self.upload_asset_tag()
steps += self.update_tagged_aur()
steps += self.update_homebrew_tap()

env = self.global_env()
Expand Down

0 comments on commit 3f7122c

Please sign in to comment.