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,6 +35,7 @@ jobs:
35 - name: MakeNSIS 35 - name: MakeNSIS
36 run: | 36 run: |
37 ./win/bundle.msys --nsi 37 ./win/bundle.msys --nsi
  38 + mv .bin/bundle/mingw64/bin/*.exe .
38 find . -iname '*.exe' 39 find . -iname '*.exe'
39 - uses: oprypin/find-latest-tag@v1 40 - uses: oprypin/find-latest-tag@v1
40 id: gettag 41 id: gettag
@@ -82,6 +83,16 @@ jobs: @@ -82,6 +83,16 @@ jobs:
82 omitBody: true 83 omitBody: true
83 omitPrereleaseDuringUpdate: true 84 omitPrereleaseDuringUpdate: true
84 replacesArtifacts: true 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 macos-publish: 96 macos-publish:
86 runs-on: macos-latest 97 runs-on: macos-latest
87 steps: 98 steps: