Commit 425cd790500f0f1d26281f73a1c3b63ffdb14766

Authored by Perry Werneck
1 parent 8a61bce3
Exists in develop

Debugging publish action.

.github/workflows/publish.yml
... ... @@ -66,7 +66,7 @@ jobs:
66 66 - name: Make bundle
67 67 run: |
68 68 ./win/bundle.msys
69   - rm -f *.tar.xz
  69 + rm -f *plugin*
70 70 tar -C ./.bin/bundle -Jcf mingw-w64-x86_64-pw3270-bundle-x86_64.tar.xz .
71 71 - uses: ncipollo/release-action@v1
72 72 with:
... ...
mac/ci-build.sh
... ... @@ -7,7 +7,7 @@ unpack() {
7 7  
8 8 echo "Unpacking ${1}"
9 9  
10   - tar -C $(brew --cellar) -Jxvf macos-${1}.tar.xz
  10 + tar -C $(brew --cellar) -Jxf macos-${1}.tar.xz
11 11 if [ "$?" != "0" ]; then
12 12 exit -1
13 13 fi
... ... @@ -17,6 +17,8 @@ unpack() {
17 17 exit -1
18 18 fi
19 19  
  20 + rm -f macos-${1}.tar.xz
  21 +
20 22 }
21 23  
22 24 unpack lib3270
... ... @@ -35,6 +37,6 @@ fi
35 37 make DESTDIR=.bin/package install
36 38 tar --create --xz --file=macos-${PROJECT_NAME}.tar.xz --directory=.bin/package --verbose .
37 39  
38   -find .
  40 +find . -iname *.tar.xz
39 41  
40 42  
... ...