We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dcd6dd commit e5f8307Copy full SHA for e5f8307
1 file changed
action.yml
@@ -247,7 +247,7 @@ runs:
247
if [ "${{ github.event_name }}" = "pull_request" ]; then
248
IDENTIFIER="${{ github.event.pull_request.number }}"
249
else
250
- IDENTIFIER="${{ github.sha }}"
+ IDENTIFIER=$(echo "$GITHUB_SHA" | cut -c1-7)
251
fi
252
ARTIFACT_TRAITS="${{ inputs.variant }},${IDENTIFIER}"
253
ARTIFACT_TRAITS_HYPHENATED=$(echo "$ARTIFACT_TRAITS" | tr ',' '-')
0 commit comments