diff --git a/.github/workflows/release_main.yml b/.github/workflows/release_main.yml index fde33f64de..c0a800a859 100644 --- a/.github/workflows/release_main.yml +++ b/.github/workflows/release_main.yml @@ -734,7 +734,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 }} diff --git a/install/docker/docker_helper.sh b/install/docker/docker_helper.sh index ff51dcfef8..9ce4c60edf 100644 --- a/install/docker/docker_helper.sh +++ b/install/docker/docker_helper.sh @@ -14,6 +14,10 @@ case "$(arch)" in v2ray_arch="arm64-v8a" v2raya_arch="arm64" ;; + riscv64) + v2ray_arch="riscv64" + v2raya_arch="riscv64" + ;; *) ;; esac