Skip to content

Commit

Permalink
Debugging publish action.
Browse files Browse the repository at this point in the history
  • Loading branch information
PerryWerneck committed Mar 7, 2024
1 parent 8a61bce commit 425cd79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 4 additions & 2 deletions mac/ci-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -17,6 +17,8 @@ unpack() {
exit -1
fi

rm -f macos-${1}.tar.xz

}

unpack lib3270
Expand All @@ -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


0 comments on commit 425cd79

Please sign in to comment.