From 0b0498f169afa72da0b89a12510f5d4b91d6d39c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0lker=20G=2E=20=C3=96zt=C3=BCrk?= Date: Mon, 12 Jul 2021 11:22:52 +0300 Subject: [PATCH] chore(templates/ci): do not build arm binaries because Starport depends on CosmWasm and it doesn't support arm64 atm. --- starport/templates/app/stargate/.github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starport/templates/app/stargate/.github/workflows/release.yml b/starport/templates/app/stargate/.github/workflows/release.yml index 981d64967e..779fb7d946 100644 --- a/starport/templates/app/stargate/.github/workflows/release.yml +++ b/starport/templates/app/stargate/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: uses: tendermint/starport/actions/cli@develop if: ${{ steps.vars.outputs.should_release == 'true' }} with: - args: chain build --release --release.prefix ${{ steps.vars.outputs.tarball_prefix }} -t linux:amd64 -t linux:arm64 -t darwin:amd64 -t darwin:arm64 + args: chain build --release --release.prefix ${{ steps.vars.outputs.tarball_prefix }} -t linux:amd64 -t darwin:amd64 - name: Delete the "latest" Release uses: dev-drprasad/delete-tag-and-release@v0.2.0