From 425cd790500f0f1d26281f73a1c3b63ffdb14766 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Wed, 6 Mar 2024 21:34:00 -0300 Subject: [PATCH] Debugging publish action. --- .github/workflows/publish.yml | 2 +- mac/ci-build.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 84233af8..a57321f3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -66,7 +66,7 @@ jobs: - name: Make bundle run: | ./win/bundle.msys - rm -f *.tar.xz + rm -f *plugin* tar -C ./.bin/bundle -Jcf mingw-w64-x86_64-pw3270-bundle-x86_64.tar.xz . - uses: ncipollo/release-action@v1 with: diff --git a/mac/ci-build.sh b/mac/ci-build.sh index 119e8fd3..b6b256cc 100755 --- a/mac/ci-build.sh +++ b/mac/ci-build.sh @@ -7,7 +7,7 @@ unpack() { echo "Unpacking ${1}" - tar -C $(brew --cellar) -Jxvf macos-${1}.tar.xz + tar -C $(brew --cellar) -Jxf macos-${1}.tar.xz if [ "$?" != "0" ]; then exit -1 fi @@ -17,6 +17,8 @@ unpack() { exit -1 fi + rm -f macos-${1}.tar.xz + } unpack lib3270 @@ -35,6 +37,6 @@ fi make DESTDIR=.bin/package install tar --create --xz --file=macos-${PROJECT_NAME}.tar.xz --directory=.bin/package --verbose . -find . +find . -iname *.tar.xz