We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c66c5a2 commit 0ece767Copy full SHA for 0ece767
.github/workflows/ci.yml
@@ -44,10 +44,16 @@ jobs:
44
run: |
45
(test -f install/micro_ros_setup/lib/micro_ros_setup/build_firmware.sh) && true || false
46
47
- - uses: actions/[email protected]
48
- with:
49
- name: micro_ros_build_${{ inputs.ci_target_ref }}
50
- path: install
+ - name: Sanitize Artifact Name
+ id: sanitize-name
+ run: |
+ sanitized_name=$(echo "${{ inputs.ci_target_ref }}" | sed 's/[\/:*?"<>|\\]/_/g')
51
+ echo "sanitized_name=$sanitized_name" >> $GITHUB_ENV
52
+
53
+ - uses: actions/[email protected]
54
+ with:
55
+ name: micro_ros_build_${{ env.sanitized_name }}
56
+ path: install
57
58
micro_ros_agent:
59
runs-on: ubuntu-latest
0 commit comments