We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a485fc commit d03a659Copy full SHA for d03a659
.github/workflows/main.yml
@@ -2,7 +2,8 @@ name: Release
2
on:
3
push:
4
tags:
5
- - 'v[0-9]+.[0-9]+.[0-9]+'
+ # - 'v[0-9]+.[0-9]+.[0-9]+'
6
+ - 'v*.*.*'
7
workflow_dispatch:
8
9
jobs:
@@ -115,7 +116,8 @@ jobs:
115
116
117
# Mac
118
- name: Upload the mac installer asset
- if: ${{ runner.os == 'macOS' && startsWith(github.ref, 'refs/tags/') }}
119
+ # if: ${{ runner.os == 'macOS' && startsWith(github.ref, 'refs/tags/') }}
120
+ if: runner.os == 'macOS'
121
uses: softprops/action-gh-release@v1
122
env:
123
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments