Commit 425cd790500f0f1d26281f73a1c3b63ffdb14766
1 parent
8a61bce3
Exists in
develop
Debugging publish action.
Showing
2 changed files
with
5 additions
and
3 deletions
Show diff stats
.github/workflows/publish.yml
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 | ... | ... |