Commit a53864134d936c9645421b5f27ebdeb9dfcda730
1 parent
274a49f3
Exists in
develop
Installing runtime binaries.
Showing
1 changed file
with
4 additions
and
3 deletions
Show diff stats
.github/workflows/winpkg.yml
... | ... | @@ -38,8 +38,7 @@ jobs: |
38 | 38 | latest: true |
39 | 39 | fileName: mingw-libv3270.tar.xz |
40 | 40 | - name: BuildApp |
41 | - run: | | |
42 | - ./win/ci-build.sh | |
41 | + run: ./win/ci-build.sh | |
43 | 42 | - name: Install pw3270 |
44 | 43 | run: make DESTDIR=./.build install |
45 | 44 | - uses: robinraju/release-downloader@v1.7 |
... | ... | @@ -67,7 +66,9 @@ jobs: |
67 | 66 | run: tar -C ./.build -Jxvf mingw-libipc3270.tar.xz |
68 | 67 | - name: Unpack hllapi |
69 | 68 | run: tar -C ./.build -Jxvf mingw-hllapi.tar.xz |
70 | - - name: MakePackage | |
69 | + - name: Make Runtime | |
70 | + run: /bin/bash ./win/makeruntime.sh | |
71 | + - name: Make Package | |
71 | 72 | run: tar -C ./.build/mingw64 -Jcvf mingw-pw3270-full.tar.xz . |
72 | 73 | - uses: ncipollo/release-action@v1 |
73 | 74 | with: | ... | ... |