Commit 8bafce17394a983c1fe249b26fdb4b58fdaeb9b9

Authored by Perry Werneck
1 parent cb5156db
Exists in develop

Debugging publish action.

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
.github/workflows/publish.yml
... ... @@ -35,6 +35,7 @@ jobs:
35 35 - name: MakeNSIS
36 36 run: |
37 37 ./win/bundle.msys --nsi
  38 + mv .bin/bundle/mingw64/bin/*.exe .
38 39 find . -iname '*.exe'
39 40 - uses: oprypin/find-latest-tag@v1
40 41 id: gettag
... ... @@ -82,6 +83,16 @@ jobs:
82 83 omitBody: true
83 84 omitPrereleaseDuringUpdate: true
84 85 replacesArtifacts: true
  86 + - uses: ncipollo/release-action@v1
  87 + with:
  88 + tag: ${{ steps.gettag.outputs.tag }}
  89 + artifacts: "pw3270*.exe"
  90 + allowUpdates: true
  91 + draft: true
  92 + makeLatest: true
  93 + omitBody: true
  94 + omitPrereleaseDuringUpdate: true
  95 + replacesArtifacts: true
85 96 macos-publish:
86 97 runs-on: macos-latest
87 98 steps:
... ...