Commit dce67294f7a09f9d90cfcfa613acf59faa3ba1b4

Authored by Perry Werneck
Committed by GitHub
1 parent 26f832fe
Exists in develop

Update winpkg.yml

Showing 1 changed file with 12 additions and 2 deletions   Show diff stats
.github/workflows/winpkg.yml
... ... @@ -41,8 +41,16 @@ jobs:
41 41 fileName: "mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst"
42 42 - name: BuildApp
43 43 run: ./win/ci-build.sh
44   - - name: Install pw3270
45   - run: make DESTDIR=${PWD}/.build install
  44 + - uses: ncipollo/release-action@v1
  45 + with:
  46 + tag: ${{ steps.gettag.outputs.tag }}
  47 + artifacts: "*-pw3270-*.pkg.tar.zst"
  48 + allowUpdates: true
  49 + draft: false
  50 + makeLatest: true
  51 + omitBody: true
  52 + omitPrereleaseDuringUpdate: true
  53 + replacesArtifacts: true
46 54 - uses: robinraju/release-downloader@v1.7
47 55 with:
48 56 repository: PerryWerneck/libipc3270
... ... @@ -68,6 +76,8 @@ jobs:
68 76 run: tar -C ./.build --zstd -xf mingw-w64-x86_64-libipc3270-5.5-0-x86_64.pkg.tar.zst
69 77 - name: Unpack hllapi
70 78 run: tar -C ./.build --zstd -xf mingw-w64-x86_64-libhllapi-5.5-0-x86_64.pkg.tar.zst
  79 + - name: Unpack pw3270
  80 + run: tar -C ./.build --zstd -xf mingw-w64-x86_64-pw3270-*-x86_64.pkg.tar.zst
71 81 - name: Make Runtime
72 82 run: /bin/bash ./win/bundle
73 83 - name: Make Package
... ...