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 026cf9e commit 092f75eCopy full SHA for 092f75e
.github/workflows/release.yml
@@ -62,6 +62,7 @@ jobs:
62
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
with:
64
auto_increment_type: ${{ github.event.inputs.release_type || 'patch' }}
65
+ prerelease: ${{ github.event.inputs.release_type == 'prerelease' || github.event.inputs.release_type == 'premajor' }}
66
prerelease_suffix: beta
67
tag_schema: semantic
68
- name: Upload release asset
@@ -74,7 +75,7 @@ jobs:
74
75
asset_name: ui-bundle.zip
76
asset_content_type: application/zip
77
publish:
- if: ${{ github.event.inputs.skip_publish != true }}
78
+ if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' && github.event.inputs.skip_publish == false }}
79
runs-on: ubuntu-latest
80
needs: release
81
steps:
0 commit comments