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,7 +56,7 @@ jobs:
56 - uses: ncipollo/release-action@v1 56 - uses: ncipollo/release-action@v1
57 with: 57 with:
58 tag: ${{ steps.gettag.outputs.tag }} 58 tag: ${{ steps.gettag.outputs.tag }}
59 - artifacts: "*-pw3270-*.pkg.tar.zst" 59 + artifacts: "*-pw3270-5*.pkg.tar.zst"
60 allowUpdates: true 60 allowUpdates: true
61 draft: true 61 draft: true
62 makeLatest: true 62 makeLatest: true
@@ -69,8 +69,6 @@ jobs: @@ -69,8 +69,6 @@ jobs:
69 ./win/bundle.msys --nsi --zip 69 ./win/bundle.msys --nsi --zip
70 find . -iname '*.exe' 70 find . -iname '*.exe'
71 find . -iname '*.zip' 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 - uses: ncipollo/release-action@v1 72 - uses: ncipollo/release-action@v1
75 with: 73 with:
76 tag: ${{ steps.gettag.outputs.tag }} 74 tag: ${{ steps.gettag.outputs.tag }}
@@ -81,6 +79,16 @@ jobs: @@ -81,6 +79,16 @@ jobs:
81 omitBody: true 79 omitBody: true
82 omitPrereleaseDuringUpdate: true 80 omitPrereleaseDuringUpdate: true
83 replacesArtifacts: true 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 macos-publish: 92 macos-publish:
85 runs-on: macos-latest 93 runs-on: macos-latest
86 steps: 94 steps: