From 59cee38a1657fa0c395fe28ba77ece37b0e66241 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Sat, 12 Jul 2025 01:08:02 -0300 Subject: [PATCH 1/2] Debugging msys check action. --- .github/workflows/msys2.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index 0ab2653e..f3f29716 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -1,7 +1,7 @@ name: check-msys2 on: push: - branches: [ "windows" ] + branches: [ "win" ] pull_request: branches: [ "master" ] From 6ef5ea6f3c74a1fc3891999718655d839383059a Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Sat, 12 Jul 2025 01:08:36 -0300 Subject: [PATCH 2/2] Disable publishing of mingw package. --- .github/workflows/publish.yml | 38 ----------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index a8d5880b..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Publish -on: - push: - branches: [ "publish" ] - tags: [ "*" ] - -jobs: - publish-mingw: - runs-on: windows-latest - defaults: - run: - shell: msys2 {0} - steps: - - uses: actions/checkout@v3 - - uses: oprypin/find-latest-tag@v1 - id: gettag - with: - repository: PerryWerneck/lib3270 - releases-only: true - - uses: msys2/setup-msys2@v2 - with: - msystem: mingw64 - update: true - install: dos2unix mingw-w64-x86_64-gcc mingw-w64-x86_64-meson mingw-w64-x86_64-iconv pkgconf mingw-w64-x86_64-gettext gettext-devel mingw-w64-x86_64-openssl - - name: CI-Build - run: | - dos2unix PKGBUILD.mingw - makepkg BUILDDIR=/tmp/pkg -p PKGBUILD.mingw - - uses: ncipollo/release-action@v1 - with: - tag: ${{ steps.gettag.outputs.tag }} - artifacts: "*3270*.pkg.tar.zst" - allowUpdates: true - draft: false - makeLatest: true - omitBody: true - omitPrereleaseDuringUpdate: true - replacesArtifacts: true