You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/github-release/action.yml
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,9 @@ inputs:
39
39
git_artifacts_x86_64_workflow_run_id:
40
40
description: 'ID of the git-artifacts (x86_64) workflow run'
41
41
required: true
42
+
git_artifacts_aarch64_workflow_run_id:
43
+
description: 'ID of the git-artifacts (aarch64) workflow run'
44
+
required: true
42
45
outputs:
43
46
github-release-url:
44
47
description: "The GitHub Release URL"
@@ -59,7 +62,7 @@ runs:
59
62
rev: ${{ inputs.rev }}
60
63
check-run-name: "github-release"
61
64
title: "Publish ${{ inputs.display-version }} for @${{ inputs.rev }}"
62
-
summary: "Downloading the Git artifacts from ${{ inputs.git_artifacts_x86_64_workflow_run_id }}and ${{ inputs.git_artifacts_i686_workflow_run_id }} and publishing them as a new GitHub Release at ${{ inputs.owner }}/${{ inputs.repo }}"
65
+
summary: "Downloading the Git artifacts from ${{ inputs.git_artifacts_x86_64_workflow_run_id }}, ${{ inputs.git_artifacts_i686_workflow_run_id }} and ${{ inputs.git_artifacts_aarch64_workflow_run_id }} and publishing them as a new GitHub Release at ${{ inputs.owner }}/${{ inputs.repo }}"
63
66
text: "For details, see [this run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id}})."
0 commit comments