diff --git a/.github/workflows/upload-debians.yaml b/.github/workflows/upload-debians.yaml index c291812a..ff4bbf97 100644 --- a/.github/workflows/upload-debians.yaml +++ b/.github/workflows/upload-debians.yaml @@ -23,7 +23,8 @@ jobs: run: | mv psdk_ros2/debian/create_debians.sh . sudo ./create_debians.sh - ls . + echo "INTERFACES_DEB=$(find *interfaces*.deb)" >> $GITHUB_ENV + echo "WRAPPER_DEB=$(find *wrapper*.deb)" >> $GITHUB_ENV - uses: d1ceward/draft-assets-release-action@v2 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/debian/create_debians.sh b/debian/create_debians.sh index 9a2388a5..40a149c8 100755 --- a/debian/create_debians.sh +++ b/debian/create_debians.sh @@ -60,7 +60,4 @@ for PACKAGE in ${PACKAGE_LIST[@]}; do done -echo "INTERFACES_DEB=$(find *interfaces*.deb)" >> $GITHUB_OUTPUT -echo "WRAPPER_DEB=$(find *wrapper*.deb)" >> $GITHUB_OUTPUT - echo "Complete!"