Skip to content

Commit

Permalink
ci: try to monkeypatch fix arm relese build
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Beast committed Sep 14, 2024
1 parent 426b498 commit e967ee7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- "*"
jobs:
aarch64:
runs-on: buildjet-4vcpu-ubuntu-2204-arm
runs-on: buildjet-2vcpu-ubuntu-2204-arm
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -39,7 +39,10 @@ jobs:
key: env-${{ github.job }}-${{ hashFiles('.env') }}

- name: Build
run: ARCH=aarch64 deno run --env-file -A ./ci/build.ts
run: |
echo -n -e "#!/bin/sh\necho 1" > $(which nproc)
chmod +x $(which nproc)
ARCH=aarch64 deno run --env-file -A ./ci/build.ts
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e967ee7

Please sign in to comment.