Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,9 @@ jobs:
done

- name: Build wrapper
run: pnpm --filter @alienplatform/bindings build
run: |
pnpm --filter @alienplatform/core build
pnpm --filter @alienplatform/bindings build

- name: Pack platform prebuild packages
run: |
Expand Down Expand Up @@ -1796,6 +1798,23 @@ jobs:
done
done

- name: Download Linux AI gateway binaries
uses: actions/download-artifact@v7
with:
pattern: ai-gateway-bin-linux-*
path: ./gateway-bins
merge-multiple: false

- name: Place AI gateway binaries in target layout for Dockerfiles
run: |
cp ./gateway-bins/ai-gateway-bin-linux-x64/alien-ai-gateway \
target/x86_64-unknown-linux-musl/release/alien-ai-gateway
cp ./gateway-bins/ai-gateway-bin-linux-arm64/alien-ai-gateway \
target/aarch64-unknown-linux-musl/release/alien-ai-gateway
chmod +x \
target/x86_64-unknown-linux-musl/release/alien-ai-gateway \
target/aarch64-unknown-linux-musl/release/alien-ai-gateway

- name: Download Linux Worker addons
uses: actions/download-artifact@v7
with:
Expand Down
Loading