Commit e359775a0fe4421e74f8f3a09a009c8d5cc70dcb
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,14 +31,14 @@ jobs: | ||
31 | mingw-w64-x86_64-nsis | 31 | mingw-w64-x86_64-nsis |
32 | - uses: robinraju/release-downloader@v1.7 | 32 | - uses: robinraju/release-downloader@v1.7 |
33 | with: | 33 | with: |
34 | - repository: PerryWerneck/lib3270 | 34 | + repository: "PerryWerneck/lib3270" |
35 | latest: true | 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 | - uses: robinraju/release-downloader@v1.7 | 37 | - uses: robinraju/release-downloader@v1.7 |
38 | with: | 38 | with: |
39 | - repository: PerryWerneck/libv3270 | 39 | + repository: "PerryWerneck/libv3270" |
40 | latest: true | 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 | - name: BuildApp | 42 | - name: BuildApp |
43 | run: ./win/ci-build.sh | 43 | run: ./win/ci-build.sh |
44 | - name: Install pw3270 | 44 | - name: Install pw3270 |
@@ -47,35 +47,35 @@ jobs: | @@ -47,35 +47,35 @@ jobs: | ||
47 | with: | 47 | with: |
48 | repository: PerryWerneck/libipc3270 | 48 | repository: PerryWerneck/libipc3270 |
49 | latest: true | 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 | - uses: robinraju/release-downloader@v1.7 | 51 | - uses: robinraju/release-downloader@v1.7 |
52 | with: | 52 | with: |
53 | repository: PerryWerneck/libhllapi | 53 | repository: PerryWerneck/libhllapi |
54 | latest: true | 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 | - uses: robinraju/release-downloader@v1.7 | 56 | - uses: robinraju/release-downloader@v1.7 |
57 | with: | 57 | with: |
58 | repository: PerryWerneck/pw3270-plugin-ipc | 58 | repository: PerryWerneck/pw3270-plugin-ipc |
59 | latest: true | 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 | - name: Unpack lib3270 | 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 | - name: Unpack libv3270 | 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 | - name: Unpack ipcplugin | 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 | - name: Unpack ipc3270 | 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 | - name: Unpack hllapi | 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 | - name: Make Runtime | 71 | - name: Make Runtime |
72 | run: /bin/bash ./win/bundle | 72 | run: /bin/bash ./win/bundle |
73 | - name: Make Package | 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 | - uses: ncipollo/release-action@v1 | 75 | - uses: ncipollo/release-action@v1 |
76 | with: | 76 | with: |
77 | tag: ${{ steps.gettag.outputs.tag }} | 77 | tag: ${{ steps.gettag.outputs.tag }} |
78 | - artifacts: "*-pw3270.tar.xz" | 78 | + artifacts: "*-pw3270-*.tar.xz" |
79 | allowUpdates: true | 79 | allowUpdates: true |
80 | draft: false | 80 | draft: false |
81 | makeLatest: true | 81 | makeLatest: true |