Commit 050439066efc701b3b11adeec2e48b6128572361

Authored by Perry Werneck
1 parent 9dead1f4
Exists in develop

Debugging publisher.

Showing 1 changed file with 11 additions and 3 deletions   Show diff stats
.github/workflows/publish.yml
... ... @@ -56,7 +56,7 @@ jobs:
56 56 - uses: ncipollo/release-action@v1
57 57 with:
58 58 tag: ${{ steps.gettag.outputs.tag }}
59   - artifacts: "*-pw3270-*.pkg.tar.zst"
  59 + artifacts: "*-pw3270-5*.pkg.tar.zst"
60 60 allowUpdates: true
61 61 draft: true
62 62 makeLatest: true
... ... @@ -69,8 +69,6 @@ jobs:
69 69 ./win/bundle.msys --nsi --zip
70 70 find . -iname '*.exe'
71 71 find . -iname '*.zip'
72   - rm -f *plugin*
73   - tar -C ./.bin/bundle -Jcf mingw-w64-x86_64-pw3270-bundle-x86_64.tar.xz .
74 72 - uses: ncipollo/release-action@v1
75 73 with:
76 74 tag: ${{ steps.gettag.outputs.tag }}
... ... @@ -81,6 +79,16 @@ jobs:
81 79 omitBody: true
82 80 omitPrereleaseDuringUpdate: true
83 81 replacesArtifacts: true
  82 + - uses: ncipollo/release-action@v1
  83 + with:
  84 + tag: ${{ steps.gettag.outputs.tag }}
  85 + artifacts: "pw3270-5*.exe"
  86 + allowUpdates: true
  87 + draft: true
  88 + makeLatest: true
  89 + omitBody: true
  90 + omitPrereleaseDuringUpdate: true
  91 + replacesArtifacts: true
84 92 macos-publish:
85 93 runs-on: macos-latest
86 94 steps:
... ...