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