From 89ee35c41f631136bd2bbb1aada09b80730237c0 Mon Sep 17 00:00:00 2001 From: Sean Valeo Date: Tue, 5 Dec 2023 23:50:21 -0500 Subject: [PATCH] remove aarch64 from release binary upload --- .github/workflows/new-release.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/new-release.yml b/.github/workflows/new-release.yml index ac7f3263..1868fe2f 100644 --- a/.github/workflows/new-release.yml +++ b/.github/workflows/new-release.yml @@ -374,7 +374,9 @@ jobs: mkdir ${TMPDIR}/lib cp conf/scope.yml ${TMPDIR}/scope - for ARCH in x86_64 aarch64; do +# removing aarch64 for now +# for ARCH in x86_64 aarch64; do + for ARCH in x86_64; do cp bin/linux/${ARCH}/scope ${TMPDIR}/scope cp lib/linux/${ARCH}/libscope.so ${TMPDIR}/scope # Create tgz and tgz.md5 of binaries and config (for each arch) @@ -387,7 +389,9 @@ jobs: done cp conf/scope.yml ${TMPDIR}/lib - for ARCH in x86_64 aarch64; do +# removing aarch64 for now +# for ARCH in x86_64 aarch64; do + for ARCH in x86_64; do cp bin/linux/${ARCH}/scope ${TMPDIR}/lib cp lib/linux/${ARCH}/libscope.so ${TMPDIR}/lib # Create zip and zip.md5 of binaries and config (for each arch) @@ -400,7 +404,9 @@ jobs: if [ "unreleased" != "${{ needs.info.outputs.tag }}" -a "next" != "${{ needs.info.outputs.tag }}" ]; then echo "::group::Attach Release Assets to https://github.com/appscope-team/appscope/releases/tag/${{ needs.info.outputs.version }}" - for ARCH in x86_64 aarch64; do +# removing aarch64 for now +# for ARCH in x86_64 aarch64; do + for ARCH in x86_64; do gh release upload ${{ needs.info.outputs.version }} "${TMPDIR}/scope-${ARCH}" gh release upload ${{ needs.info.outputs.version }} "${TMPDIR}/scope-${ARCH}.md5" gh release upload ${{ needs.info.outputs.version }} "${TMPDIR}/scope-${ARCH}.tgz"