|
58 | 58 | - name: Build |
59 | 59 | run: yarn ci:releasebuild |
60 | 60 |
|
| 61 | + - name: Dry Run |
| 62 | + run: | |
| 63 | + yarn lerna version ${{ github.event.inputs.new_version || '' }} \ |
| 64 | + --conventional-graduate \ |
| 65 | + --force-conventional-graduate \ |
| 66 | + --yes \ |
| 67 | + --exact \ |
| 68 | + --dry-run |
| 69 | +
|
| 70 | + yarn lerna publish --dry-run |
| 71 | +
|
61 | 72 | - name: Version Bump |
62 | 73 | env: |
63 | 74 | GH_TOKEN: ${{ secrets.UI5_WEBCOMP_BOT_GH_TOKEN }} |
@@ -142,13 +153,29 @@ jobs: |
142 | 153 | - name: Build |
143 | 154 | run: yarn ci:releasebuild |
144 | 155 |
|
| 156 | + - name: Dry Run |
| 157 | + run: | |
| 158 | + yarn lerna version \ |
| 159 | + --conventional-prerelease \ |
| 160 | + --force-publish \ |
| 161 | + --yes \ |
| 162 | + --exact \ |
| 163 | + --dry-run |
| 164 | + |
| 165 | + yarn lerna publish --dry-run |
| 166 | +
|
145 | 167 | - name: Version Bump |
146 | 168 | env: |
147 | 169 | GH_TOKEN: ${{ secrets.UI5_WEBCOMP_BOT_GH_TOKEN }} |
148 | 170 | run: | |
149 | 171 | git config user.name "${{ secrets.UI5_WEBCOMP_BOT_NAME }}" |
150 | 172 | git config user.email "${{ secrets.UI5_WEBCOMP_BOT_EMAIL }}" |
151 | | - yarn lerna version --conventional-prerelease --force-publish --yes --exact --create-release github |
| 173 | + yarn lerna version \ |
| 174 | + --conventional-prerelease \ |
| 175 | + --force-publish \ |
| 176 | + --yes \ |
| 177 | + --exact \ |
| 178 | + --create-release github |
152 | 179 |
|
153 | 180 | - name: Publish |
154 | 181 | run: | |
@@ -205,13 +232,29 @@ jobs: |
205 | 232 | - name: Build |
206 | 233 | run: yarn ci:releasebuild |
207 | 234 |
|
| 235 | + - name: Dry Run |
| 236 | + run: | |
| 237 | + yarn lerna version ${{ github.event.inputs.new_version || '' }} \ |
| 238 | + --conventional-graduate \ |
| 239 | + --force-conventional-graduate \ |
| 240 | + --yes \ |
| 241 | + --exact \ |
| 242 | + --dry-run |
| 243 | +
|
| 244 | + yarn lerna publish --dry-run |
| 245 | + |
208 | 246 | - name: Version Bump |
209 | 247 | env: |
210 | 248 | GH_TOKEN: ${{ secrets.UI5_WEBCOMP_BOT_GH_TOKEN }} |
211 | 249 | run: | |
212 | 250 | git config user.name "${{ secrets.UI5_WEBCOMP_BOT_NAME }}" |
213 | 251 | git config user.email "${{ secrets.UI5_WEBCOMP_BOT_EMAIL }}" |
214 | | - yarn lerna version ${{ github.event.inputs.new_version || '' }} --conventional-graduate --force-conventional-graduate --yes --exact --create-release github |
| 252 | + yarn lerna version ${{ github.event.inputs.new_version || '' }} \ |
| 253 | + --conventional-graduate \ |
| 254 | + --force-conventional-graduate \ |
| 255 | + --yes \ |
| 256 | + --exact \ |
| 257 | + --create-release github |
215 | 258 |
|
216 | 259 | - name: Publish |
217 | 260 | run: yarn lerna publish from-git --yes --dist-tag ${{ github.event.inputs.npm_tag || 'sf' }} |
|
0 commit comments