Skip to content

Commit a772c66

Browse files
committed
pre-commit
1 parent e3a7dc1 commit a772c66

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ runs:
7171
if [ -n "${{ inputs.artifact_name }}" ]; then
7272
echo "name=${{ inputs.artifact_name }}" >> $GITHUB_OUTPUT
7373
else
74-
echo "name=bloom-debian-packages-${{ inputs.ros_distro }}-${{ github.job }}-${{ github.run_id }}" >> $GITHUB_OUTPUT
74+
DISTRO="${{ inputs.ros_distro }}"
75+
JOB="${{ github.job }}"
76+
RUN="${{ github.run_id }}"
77+
echo "name=bloom-debian-packages-${DISTRO}-${JOB}-${RUN}" >> $GITHUB_OUTPUT
7578
fi
7679
7780
- name: Upload Debian packages

0 commit comments

Comments
 (0)