Skip to content

Commit 44e5da1

Browse files
facontidavideclaude
andcommitted
Fix AppImage rename: remove linuxdeploy before globbing
*.AppImage matched both the output and linuxdeploy itself. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Entire-Checkpoint: a2916ec6631d
1 parent dfb594d commit 44e5da1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/appimage.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ jobs:
102102
--output appimage
103103
104104
- name: Rename AppImage
105-
run: mv *.AppImage pj_bridge_ros2-${{ matrix.environment }}-x86_64.AppImage
105+
run: |
106+
rm -f linuxdeploy-x86_64.AppImage
107+
mv *.AppImage pj_bridge_ros2-${{ matrix.environment }}-x86_64.AppImage
106108
107109
- uses: actions/upload-artifact@v4
108110
with:

0 commit comments

Comments
 (0)