Commit f479763e89e924b005956ea16a13b432c430f0cc

Authored by Perry Werneck
Committed by GitHub
1 parent 17bee0c1
Exists in master and in 1 other branch develop

Update msys2.yml

Showing 1 changed file with 14 additions and 1 deletions   Show diff stats
.github/workflows/msys2.yml
1 name: MSYS2 1 name: MSYS2
2 on: 2 on:
  3 + push:
  4 + branches:
  5 + - develop
3 pull_request: 6 pull_request:
4 branches: 7 branches:
5 - master 8 - master
@@ -21,6 +24,16 @@ jobs: @@ -21,6 +24,16 @@ jobs:
21 install: xz mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool 24 install: xz mingw-w64-x86_64-gcc automake autoconf make git pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl libtool
22 - name: CI-Build 25 - name: CI-Build
23 run: | 26 run: |
24 - gcc -v  
25 ./win/ci-build.sh 27 ./win/ci-build.sh
  28 + - uses: ncipollo/release-action@v1
  29 + with:
  30 + artifacts: "*.tar.xz"
  31 + allowUpdates: true
  32 + draft: true
  33 + makeLatest: true
  34 + name: mingw-binary
  35 + omitBody: true
  36 + omitPrereleaseDuringUpdate: true
  37 + replacesArtifacts: true
  38 +
26 39