From 7f2612ea43b564f60abed9d9645e8a2ad39bd6df Mon Sep 17 00:00:00 2001 From: Fabien LOISON Date: Wed, 17 Apr 2024 10:53:00 +0200 Subject: [PATCH] ci(standalone-builds): Make a tarball for Linux standalone releases --- .github/workflows/standalone-builds.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/standalone-builds.yml b/.github/workflows/standalone-builds.yml index 2fabf61..9e80533 100644 --- a/.github/workflows/standalone-builds.yml +++ b/.github/workflows/standalone-builds.yml @@ -53,8 +53,13 @@ jobs: run: | linux-bin/build.sh - - name: Archive Windows Build + - name: "Make the release tarball" + run: | + mv yoga-bin.dist yoga-v$(python setup.py --version)_linux_standalone_x86-64 + tar -cvzf yoga-v$(python setup.py --version)_linux_standalone_x86-64.tar.gz yoga-v$(python setup.py --version)_linux_standalone_x86-64 + + - name: "Upload Linux tarball" uses: actions/upload-artifact@v4 with: name: yoga-vX.X.X_linux_standalone_x86-64 - path: yoga-bin.dist + path: "yoga-*.tar.gz"