Skip to content

Commit 25f4721

Browse files
committed
ci: aur is down
1 parent a433766 commit 25f4721

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
chmod 600 ~/.ssh/id_rsa
6060
git config --global user.email "[email protected]"
6161
git config --global user.name "opencode"
62-
ssh-keyscan -H aur.archlinux.org >> ~/.ssh/known_hosts
62+
ssh-keyscan -H aur.archlinux.org >> ~/.ssh/known_hosts || true
6363
- name: Install dependencies
6464
run: bun install
6565

packages/opencode/script/publish.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ if (!snapshot) {
9797
const macX64Sha = await $`sha256sum ./dist/opencode-darwin-x64.zip | cut -d' ' -f1`.text().then((x) => x.trim())
9898
const macArm64Sha = await $`sha256sum ./dist/opencode-darwin-arm64.zip | cut -d' ' -f1`.text().then((x) => x.trim())
9999

100-
// AUR package
100+
/* AUR package - commented out as AUR is down
101101
const pkgbuild = [
102102
"# Maintainer: dax",
103103
"# Maintainer: adam",
@@ -136,6 +136,7 @@ if (!snapshot) {
136136
await $`cd ./dist/aur-${pkg} && git commit -m "Update to v${version}"`
137137
if (!dry) await $`cd ./dist/aur-${pkg} && git push`
138138
}
139+
*/
139140

140141
// Homebrew formula
141142
const homebrewFormula = [

0 commit comments

Comments
 (0)