Skip to content

Commit

Permalink
chore(docker,ci): add riscv64 to docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
ngc7331 committed Nov 24, 2024
1 parent cf589ae commit 1a8d48d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ jobs:
context: .
builder: ${{ steps.buildx.outputs.name }}
file: install/docker/Dockerfile.Action
platforms: linux/arm,linux/arm64,linux/amd64
platforms: linux/arm,linux/arm64,linux/amd64,linux/riscv64
push: true
tags: |
${{ steps.prep.outputs.image }}:${{ steps.prep.outputs.tag }}
Expand Down
4 changes: 4 additions & 0 deletions install/docker/docker_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ case "$(arch)" in
v2ray_arch="arm64-v8a"
v2raya_arch="arm64"
;;
riscv64)
v2ray_arch="riscv64"
v2raya_arch="riscv64"
;;
*)
;;
esac
Expand Down

0 comments on commit 1a8d48d

Please sign in to comment.