We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3a7dc1 commit a772c66Copy full SHA for a772c66
action.yml
@@ -71,7 +71,10 @@ runs:
71
if [ -n "${{ inputs.artifact_name }}" ]; then
72
echo "name=${{ inputs.artifact_name }}" >> $GITHUB_OUTPUT
73
else
74
- echo "name=bloom-debian-packages-${{ inputs.ros_distro }}-${{ github.job }}-${{ github.run_id }}" >> $GITHUB_OUTPUT
+ DISTRO="${{ inputs.ros_distro }}"
75
+ JOB="${{ github.job }}"
76
+ RUN="${{ github.run_id }}"
77
+ echo "name=bloom-debian-packages-${DISTRO}-${JOB}-${RUN}" >> $GITHUB_OUTPUT
78
fi
79
80
- name: Upload Debian packages
0 commit comments