From 9c370e1cec145beb03195d184befd38045884e75 Mon Sep 17 00:00:00 2001 From: youben11 Date: Wed, 11 Jan 2023 09:46:51 +0100 Subject: [PATCH] ci: fix macos release tarball --- .github/workflows/release.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71f4651b8..8875b810d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -262,15 +262,10 @@ jobs: id: build-mac-tarball run: | cd compiler - make concretecompiler - mkdir -p tarballs/concretecompiler/lib tarballs/concretecompiler/bin - cp build/bin/concretecompiler tarballs/concretecompiler/bin - cp build/lib/libConcretelangRuntime.dylib tarballs/concretecompiler/lib - cp ../.github/workflows/assets/Installation.md tarballs/concretecompiler/ - + make INSTALL_PREFIX=./tarballs/ install + cp ../.github/workflows/assets/Installation.md ./tarballs/concretecompiler/ TAG=$(git describe --tags --abbrev=0) - - cd tarballs && tar -czvf "concretecompiler-${TAG}-x86_64-macos-catalina.tar.gz" concretecompiler + cd ./tarballs && tar -czvf "concretecompiler-${TAG}-x86_64-macos-catalina.tar.gz" concretecompiler echo "::set-output name=ASSET_NAME::concretecompiler-${TAG}-x86_64-macos-catalina.tar.gz" - name: Upload Tarball