Skip to content

Commit

Permalink
explicitly copy
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Apr 20, 2024
1 parent 7dbaf46 commit 28a62a9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:
run: |
mkdir -p AppDir/usr/bin
cp -r maid-linux/* AppDir/usr/bin/
cp maid-linux/maid AppDir/usr/bin/
cp assets/maid.png AppDir/maid.png
echo '[Desktop Entry]
Name=Maid
Expand All @@ -75,6 +76,16 @@ jobs:
Categories=Utility;' > AppDir/maid.desktop
chmod +x AppDir/usr/bin/maid
- name: List contents of maid-linux
run: |
echo "Listing contents of maid-linux:"
ls -R maid-linux
- name: List contents of AppDir
run: |
echo "Listing contents of AppDir:"
ls -R AppDir
- name: Create AppImage
run: |
appimagetool AppDir maid.AppImage
Expand Down

0 comments on commit 28a62a9

Please sign in to comment.