We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 506a60c commit 6ac2ae1Copy full SHA for 6ac2ae1
.github/workflows/rust-minimal.yml
@@ -45,7 +45,11 @@ jobs:
45
- name: Search packages in this repository
46
id: list_packages
47
run: |
48
- echo ::set-output name=package_list::$(colcon list --names-only)
+ {
49
+ echo 'package_list<<EOF'
50
+ colcon list --names-only
51
+ echo EOF
52
+ } >> "$GITHUB_OUTPUT"
53
54
- name: Setup ROS environment
55
uses: ros-tooling/setup-ros@v0.7
.github/workflows/rust-stable.yml
0 commit comments