Commit cb5156db481535a87579bf5499320c4592d12c2e

Authored by Perry Werneck
1 parent abfd34c8
Exists in develop

Debugging publish action.

Showing 1 changed file with 6 additions and 2 deletions   Show diff stats
.github/workflows/publish.yml
@@ -16,7 +16,7 @@ jobs: @@ -16,7 +16,7 @@ jobs:
16 with: 16 with:
17 msystem: mingw64 17 msystem: mingw64
18 update: true 18 update: true
19 - install: dos2unix mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool mingw-w64-x86_64-gtk3 mingw-w64-x86_64-imagemagick mingw-w64-x86_64-optipng mingw-w64-x86_64-inkscape 19 + install: dos2unix mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool mingw-w64-x86_64-gtk3 mingw-w64-x86_64-imagemagick mingw-w64-x86_64-optipng mingw-w64-x86_64-inkscape mingw-w64-x86_64-nsis
20 - uses: robinraju/release-downloader@v1.7 20 - uses: robinraju/release-downloader@v1.7
21 with: 21 with:
22 repository: "PerryWerneck/lib3270" 22 repository: "PerryWerneck/lib3270"
@@ -27,11 +27,15 @@ jobs: @@ -27,11 +27,15 @@ jobs:
27 repository: "PerryWerneck/libv3270" 27 repository: "PerryWerneck/libv3270"
28 latest: true 28 latest: true
29 fileName: "mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst" 29 fileName: "mingw-w64-x86_64-libv3270-5.4-0-x86_64.pkg.tar.zst"
30 - - name: CI-Build 30 + - name: MakePackage
31 run: | 31 run: |
32 pacman -U --noconfirm *.pkg.tar.zst 32 pacman -U --noconfirm *.pkg.tar.zst
33 dos2unix PKGBUILD.mingw 33 dos2unix PKGBUILD.mingw
34 makepkg BUILDDIR=/tmp/pkg -p PKGBUILD.mingw 34 makepkg BUILDDIR=/tmp/pkg -p PKGBUILD.mingw
  35 + - name: MakeNSIS
  36 + run: |
  37 + ./win/bundle.msys --nsi
  38 + find . -iname '*.exe'
35 - uses: oprypin/find-latest-tag@v1 39 - uses: oprypin/find-latest-tag@v1
36 id: gettag 40 id: gettag
37 with: 41 with: