Commit 3a997b15bf3c1b67f59e192df2855101c6168b93
1 parent
ec8b9db5
Exists in
develop
Adding win32 bundle.
Showing
1 changed file
with
8 additions
and
3 deletions
Show diff stats
.github/workflows/publish.yml
1 | 1 | name: Publish |
2 | 2 | on: |
3 | + push: | |
4 | + branches: | |
5 | + - develop | |
3 | 6 | pull_request: |
4 | 7 | branches: |
5 | 8 | - master |
... | ... | @@ -24,10 +27,12 @@ jobs: |
24 | 27 | 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 |
25 | 28 | - name: CI-Build |
26 | 29 | run: ./win/mingw-build.sh |
30 | + - name: Bundle | |
31 | + run: ./win/bundle.msys | |
27 | 32 | - uses: ncipollo/release-action@v1 |
28 | 33 | with: |
29 | 34 | tag: ${{ steps.gettag.outputs.tag }} |
30 | - artifacts: "*-lib3270-*.pkg.tar.zst" | |
35 | + artifacts: "*-lib3270-*.pkg.tar.zst,*-lib3270-*.zip" | |
31 | 36 | allowUpdates: true |
32 | 37 | draft: false |
33 | 38 | makeLatest: true |
... | ... | @@ -35,7 +40,7 @@ jobs: |
35 | 40 | omitPrereleaseDuringUpdate: true |
36 | 41 | replacesArtifacts: true |
37 | 42 | msys2-msvc: |
38 | - name: Publish for MSVC 64 | |
43 | + name: Publish devel for MSVC 64 | |
39 | 44 | runs-on: windows-latest |
40 | 45 | defaults: |
41 | 46 | run: |
... | ... | @@ -57,7 +62,7 @@ jobs: |
57 | 62 | - uses: ncipollo/release-action@v1 |
58 | 63 | with: |
59 | 64 | tag: ${{ steps.gettag.outputs.tag }} |
60 | - artifacts: "*-lib3270-*.zip" | |
65 | + artifacts: "*-lib3270-*.devel.zip" | |
61 | 66 | allowUpdates: true |
62 | 67 | draft: false |
63 | 68 | makeLatest: true | ... | ... |