File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 8686 git config user.email "${{ secrets.UI5_WEBCOMP_BOT_EMAIL }}"
8787 yarn lerna version ${{ github.event.inputs.version_bump || '' }} --conventional-graduate --force-conventional-graduate --yes --exact --create-release github
8888
89+ - name : Version - Experimental
90+ if : ${{ github.event.inputs.release_type == 'experimental' }}
91+ run : |
92+ git_hash=$(git rev-parse --short "${{ github.sha }}")
93+ yarn lerna version "0.0.0-${git_hash}" --exact --no-push --allow-branch ${{ github.ref_name }}
94+
8995 # Build
9096 - name : Build
9197 run : yarn ci:releasebuild
@@ -126,7 +132,7 @@ jobs:
126132 - name : Publish Experimental
127133 if : ${{ github.event.inputs.release_type == 'experimental' }}
128134 run : |
129- node ./.github/actions/release.cjs
135+ yarn lerna publish from-git --yes --dist-tag experimental
130136
131137 - name : Publish Hotfix
132138 if : ${{ github.event.inputs.release_type == 'hotfix' }}
You can’t perform that action at this time.
0 commit comments