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 ba220b3 commit 618275eCopy full SHA for 618275e
.github/workflows/CI.yml
@@ -13,7 +13,6 @@ on:
13
release:
14
types:
15
- published
16
-
17
jobs:
18
prepare_action_info:
19
if: ${{ !startsWith(github.event.ref, 'refs/tags/') }}
.github/workflows/prepare_action_info.yml
@@ -76,7 +76,7 @@ jobs:
76
build_version_type=PULL_REQUEST
77
elif [ "$GH_EVENT_NAME" == 'release' ]
78
then
79
- if [ ${{ github.event.release.prerelease }} ]
+ if [ ${{ github.event.release.prerelease }} == 'true' ]
80
81
build_version_type=RC
82
publish_platform_channel=beta
@@ -87,6 +87,7 @@ jobs:
87
88
build_publish=true
89
publish_enable=true
90
+ publish_type=release
91
else
92
echo Unsupported github event name "$GH_EVENT_NAME"
93
exit 1
0 commit comments