Commit 9493d8390539fe81bfb02c089a6eed3a92b00ca5
Committed by
GitHub
1 parent
c6a88728
Exists in
master
and in
1 other branch
Update msys2.yml
Showing
1 changed file
with
8 additions
and
4 deletions
Show diff stats
.github/workflows/msys2.yml
@@ -25,12 +25,16 @@ jobs: | @@ -25,12 +25,16 @@ jobs: | ||
25 | - name: CI-Build | 25 | - name: CI-Build |
26 | run: | | 26 | run: | |
27 | ./win/ci-build.sh | 27 | ./win/ci-build.sh |
28 | - - name: Analyze Tags | ||
29 | - id: tag-data | ||
30 | - uses: Dotunj/github-action-analyze-tags@v0.2.0 | 28 | + - name: Find Tag |
29 | + id: tagger | ||
30 | + uses: jimschubert/query-tag-action@v1 | ||
31 | + with: | ||
32 | + include: '*' | ||
33 | + exclude: '*-rc*' | ||
34 | + commit-ish: 'HEAD~' | ||
31 | - uses: ncipollo/release-action@v1 | 35 | - uses: ncipollo/release-action@v1 |
32 | with: | 36 | with: |
33 | - tag: ${{ steps.tag-data.outputs.highest_tag }} | 37 | + tag: ${{ steps.tagger.outputs.tag }} |
34 | name: mingw-binary | 38 | name: mingw-binary |
35 | artifacts: "*.tar.xz" | 39 | artifacts: "*.tar.xz" |
36 | allowUpdates: true | 40 | allowUpdates: true |