Commit e359775a0fe4421e74f8f3a09a009c8d5cc70dcb

Authored by Perry Werneck
1 parent 4aeca917
Exists in develop

Updating package names on winpkg action.

Showing 1 changed file with 14 additions and 14 deletions   Show diff stats
.github/workflows/winpkg.yml
... ... @@ -31,14 +31,14 @@ jobs:
31 31 mingw-w64-x86_64-nsis
32 32 - uses: robinraju/release-downloader@v1.7
33 33 with:
34   - repository: PerryWerneck/lib3270
  34 + repository: "PerryWerneck/lib3270"
35 35 latest: true
36   - fileName: mingw-w64-x86_64-lib3270.tar.xz
  36 + fileName: "mingw-w64-x86_64-lib3270-5.4-0-x86_64.pkg.tar.zst"
37 37 - uses: robinraju/release-downloader@v1.7
38 38 with:
39   - repository: PerryWerneck/libv3270
  39 + repository: "PerryWerneck/libv3270"
40 40 latest: true
41   - fileName: mingw-w64-x86_64-libv3270.tar.xz
  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 44 - name: Install pw3270
... ... @@ -47,35 +47,35 @@ jobs:
47 47 with:
48 48 repository: PerryWerneck/libipc3270
49 49 latest: true
50   - fileName: mingw-w64-x86_64-libipc3270.tar.xz
  50 + fileName: mingw-w64-x86_64-libipc3270-5.5-0-x86_64.pkg.tar.zst
51 51 - uses: robinraju/release-downloader@v1.7
52 52 with:
53 53 repository: PerryWerneck/libhllapi
54 54 latest: true
55   - fileName: mingw-w64-x86_64-hllapi.tar.xz
  55 + fileName: mingw-w64-x86_64-libhllapi-5.5-0-x86_64.pkg.tar.zst
56 56 - uses: robinraju/release-downloader@v1.7
57 57 with:
58 58 repository: PerryWerneck/pw3270-plugin-ipc
59 59 latest: true
60   - fileName: mingw-w64-x86_64-pw3270-plugin-ipc.tar.xz
  60 + fileName: mingw-w64-x86_64-pw3270-plugin-ipc-5.5-0-x86_64.pkg.tar.zst
61 61 - name: Unpack lib3270
62   - run: tar -C ./.build -Jxf mingw-w64-x86_64-lib3270.tar.xz
  62 + run: tar -C ./.build --zstd -xf mingw-w64-x86_64-lib3270-5.4-0-x86_64.pkg.tar.zst
63 63 - name: Unpack libv3270
64   - run: tar -C ./.build -Jxf mingw-w64-x86_64-libv3270.tar.xz
  64 + run: tar -C ./.build --zstd -xf mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst
65 65 - name: Unpack ipcplugin
66   - run: tar -C ./.build -Jxf mingw-w64-x86_64-pw3270-plugin-ipc.tar.xz
  66 + run: tar -C ./.build --zstd -xf mingw-w64-x86_64-pw3270-plugin-ipc-5.5-0-x86_64.pkg.tar.zst
67 67 - name: Unpack ipc3270
68   - run: tar -C ./.build -Jxf mingw-w64-x86_64-libipc3270.tar.xz
  68 + run: tar -C ./.build --zstd -xf mingw-w64-x86_64-libipc3270-5.5-0-x86_64.pkg.tar.zst
69 69 - name: Unpack hllapi
70   - run: tar -C ./.build -Jxf mingw-w64-x86_64-hllapi.tar.xz
  70 + run: tar -C ./.build --zstd -xf mingw-w64-x86_64-libhllapi-5.5-0-x86_64.pkg.tar.zst
71 71 - name: Make Runtime
72 72 run: /bin/bash ./win/bundle
73 73 - name: Make Package
74   - run: tar -C ./.build -Jcf mingw-w64-x86_64-pw3270.tar.xz .
  74 + run: tar -C ./.build -Jcf mingw-w64-x86_64-pw3270-x86_64.tar.xz .
75 75 - uses: ncipollo/release-action@v1
76 76 with:
77 77 tag: ${{ steps.gettag.outputs.tag }}
78   - artifacts: "*-pw3270.tar.xz"
  78 + artifacts: "*-pw3270-*.tar.xz"
79 79 allowUpdates: true
80 80 draft: false
81 81 makeLatest: true
... ...