Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ on:
change_set_version:
description: "The change set version for deployments"
value: ${{ jobs.tag_release.outputs.change_set_version }}
next_version_tag:
description: "The next version tag that will be created"
value: ${{ jobs.tag_release.outputs.next_version_tag }}
secrets:
NPM_TOKEN:
required: false
Expand Down Expand Up @@ -173,6 +176,7 @@ jobs:
outputs:
version_tag: ${{steps.output_version_tag.outputs.VERSION_TAG}}
change_set_version: ${{ steps.output_change_set_version.outputs.CHANGE_SET_VERSION }}
next_version_tag: ${{ steps.output_version_tag.outputs.NEXT_VERSION_TAG }}
steps:
- name: Fetch asdf artifact
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
Expand Down Expand Up @@ -251,11 +255,11 @@ jobs:
if: ${{ inputs.extra_artifact_name != '' }}
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
with:
artifact-ids: ${{ inputs.extra_artifact_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ inputs.extra_artifact_repository }}
run-id: ${{ inputs.extra_artifact_run_id }}
artifact-ids: ${{ inputs.extra_artifact_id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ inputs.extra_artifact_repository }}
run-id: ${{ inputs.extra_artifact_run_id }}

- name: Set VERSION_TAG based on dry_run flag
id: output_version_tag
run: |
Expand Down Expand Up @@ -304,6 +308,7 @@ jobs:
fi
echo "VERSION_TAG=${VERSION_TAG}" >> "$GITHUB_OUTPUT"
echo "VERSION_TAG=${VERSION_TAG}" >> "$GITHUB_ENV"
echo "NEXT_VERSION_TAG=${NEW_VERSION_TAG}" >> "$GITHUB_OUTPUT"
env:
GITHUB_TOKEN: ${{ github.token }}
BRANCH_NAME: ${{ inputs.branch_name }}
Expand Down Expand Up @@ -345,7 +350,7 @@ jobs:
body: |
## Info
[See code diff](${{ github.event.compare }})
[Release workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
[Release workflow run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}) - Workflow ID: ${{ github.run_id }}

It was initialized by [${{ github.event.sender.login }}](${{ github.event.sender.html_url }})

Expand Down