From a161954dab7c85dc8d699f25665b686badf963ef Mon Sep 17 00:00:00 2001 From: Christophe Dervieux Date: Fri, 27 Sep 2024 18:27:45 +0200 Subject: [PATCH] move compressed bundle a folder up --- .github/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index f467fc6e4..de38e7c56 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -291,12 +291,15 @@ jobs: run: | pushd $(find . -maxdepth 1 -type d -name "*windows*") 7z a -o.. tinitex.zip x86_64-pc-windows-msvc/. + mv tinitex.zip .. popd pushd $(find . -maxdepth 1 -type d -name "*macOS*") 7z a -ttar -so tinitex.tar aarch64-apple-darwin/. | 7z a -si -o.. tinitex.tgz + mv tinitex.tgz .. popd pushd $(find . -maxdepth 1 -type d -name "*ubuntu*") 7z a -ttar -so tinitex.tar x86_64-unknown-linux-gnu/. | 7z a -si -o.. tinitex.tar.gz + mv tinitex.tar.gz .. popd - run: ls -lisa tinitex