Skip to content

Commit 09a6466

Browse files
Update to fix icon (hopefully)
1 parent 499eae9 commit 09a6466

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,21 @@ jobs:
8080
wget -P "$HOME/.local/bin" "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage"
8181
chmod +x "$HOME/.local/bin/appimagetool-x86_64.AppImage"
8282
appimagetool-x86_64.AppImage --version
83-
- name: Run PupNet
84-
run: pupnet Setup/MSUScripter.pupnet.conf --kind appimage -y
83+
- name: Run PupNet and Fix Icon
84+
run: |
85+
pupnet Setup/MSUScripter.pupnet.conf --kind appimage -y
86+
cd Setup/Output
87+
./MSUScripter.x86_64.AppImage --appimage-extract
88+
cd squashfs-root
89+
rm .DirIcon
90+
cp org.mattequalscoder.msuscripter.png .DirIcon
91+
appimagetool-x86_64.AppImage .
92+
mv *.AppImage MSUScripter-x86_64.AppImage
8593
- name: Upload artifact
8694
uses: actions/upload-artifact@v4
8795
if: ${{ github.event_name != 'pull_request' }}
8896
with:
89-
path: "Setup/Output/MSUScripter*"
97+
path: "Setup/Output/squashfs-root/MSUScripter-x86_64.AppImage"
9098
name: MSUScripterLinux
9199

92100
package:

0 commit comments

Comments
 (0)