Commit 9d68e58ff28aa8a611c7f0ca938febf844848e33
1 parent
edeea909
Exists in
develop
Updating msys2 workflow.
Showing
1 changed file
with
7 additions
and
2 deletions
Show diff stats
.github/workflows/msys2.yml
@@ -13,6 +13,11 @@ jobs: | @@ -13,6 +13,11 @@ jobs: | ||
13 | shell: msys2 {0} | 13 | shell: msys2 {0} |
14 | steps: | 14 | steps: |
15 | - uses: actions/checkout@v3 | 15 | - uses: actions/checkout@v3 |
16 | + - uses: oprypin/find-latest-tag@v1 | ||
17 | + id: gettag | ||
18 | + with: | ||
19 | + repository: PerryWerneck/lib3270 | ||
20 | + releases-only: true | ||
16 | - uses: msys2/setup-msys2@v2 | 21 | - uses: msys2/setup-msys2@v2 |
17 | with: | 22 | with: |
18 | msystem: mingw64 | 23 | msystem: mingw64 |
@@ -22,10 +27,10 @@ jobs: | @@ -22,10 +27,10 @@ jobs: | ||
22 | run: ./win/ci-build.sh | 27 | run: ./win/ci-build.sh |
23 | - uses: ncipollo/release-action@v1 | 28 | - uses: ncipollo/release-action@v1 |
24 | with: | 29 | with: |
25 | - tag: 5.4 | 30 | + tag: ${{ steps.gettag.outputs.tag }} |
26 | artifacts: "*.tar.xz" | 31 | artifacts: "*.tar.xz" |
27 | allowUpdates: true | 32 | allowUpdates: true |
28 | - draft: true | 33 | + draft: false |
29 | makeLatest: true | 34 | makeLatest: true |
30 | omitBody: true | 35 | omitBody: true |
31 | omitPrereleaseDuringUpdate: true | 36 | omitPrereleaseDuringUpdate: true |