|
51 | 51 | change_set_version: |
52 | 52 | description: "The change set version for deployments" |
53 | 53 | value: ${{ jobs.tag_release.outputs.change_set_version }} |
| 54 | + next_version_tag: |
| 55 | + description: "The next version tag that will be created" |
| 56 | + value: ${{ jobs.tag_release.outputs.next_version_tag }} |
54 | 57 | secrets: |
55 | 58 | NPM_TOKEN: |
56 | 59 | required: false |
@@ -173,6 +176,7 @@ jobs: |
173 | 176 | outputs: |
174 | 177 | version_tag: ${{steps.output_version_tag.outputs.VERSION_TAG}} |
175 | 178 | change_set_version: ${{ steps.output_change_set_version.outputs.CHANGE_SET_VERSION }} |
| 179 | + next_version_tag: ${{ steps.output_version_tag.outputs.NEXT_VERSION_TAG }} |
176 | 180 | steps: |
177 | 181 | - name: Fetch asdf artifact |
178 | 182 | uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 |
@@ -251,11 +255,11 @@ jobs: |
251 | 255 | if: ${{ inputs.extra_artifact_name != '' }} |
252 | 256 | uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 |
253 | 257 | with: |
254 | | - artifact-ids: ${{ inputs.extra_artifact_id }} |
255 | | - github-token: ${{ secrets.GITHUB_TOKEN }} |
256 | | - repository: ${{ inputs.extra_artifact_repository }} |
257 | | - run-id: ${{ inputs.extra_artifact_run_id }} |
258 | | - |
| 258 | + artifact-ids: ${{ inputs.extra_artifact_id }} |
| 259 | + github-token: ${{ secrets.GITHUB_TOKEN }} |
| 260 | + repository: ${{ inputs.extra_artifact_repository }} |
| 261 | + run-id: ${{ inputs.extra_artifact_run_id }} |
| 262 | + |
259 | 263 | - name: Set VERSION_TAG based on dry_run flag |
260 | 264 | id: output_version_tag |
261 | 265 | run: | |
@@ -304,6 +308,7 @@ jobs: |
304 | 308 | fi |
305 | 309 | echo "VERSION_TAG=${VERSION_TAG}" >> "$GITHUB_OUTPUT" |
306 | 310 | echo "VERSION_TAG=${VERSION_TAG}" >> "$GITHUB_ENV" |
| 311 | + echo "NEXT_VERSION_TAG=${NEW_VERSION_TAG}" >> "$GITHUB_OUTPUT" |
307 | 312 | env: |
308 | 313 | GITHUB_TOKEN: ${{ github.token }} |
309 | 314 | BRANCH_NAME: ${{ inputs.branch_name }} |
@@ -345,7 +350,7 @@ jobs: |
345 | 350 | body: | |
346 | 351 | ## Info |
347 | 352 | [See code diff](${{ github.event.compare }}) |
348 | | - [Release workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) |
| 353 | + [Release workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) - Workflow ID: ${{ github.run_id }} |
349 | 354 |
|
350 | 355 | It was initialized by [${{ github.event.sender.login }}](${{ github.event.sender.html_url }}) |
351 | 356 |
|
|
0 commit comments