@@ -100,7 +100,7 @@ jobs:
100100 - name : Build AppImage
101101 run : |
102102 cd ${{ github.workspace }}/recipes/appimage-builder
103- export APPIMAGE_BUILDER_VERSION=$(appimage-builder --version | head -1 | cut -f 2 -d" ")
103+ export APPIMAGE_BUILDER_VERSION=$(appimage-builder --version | head -1 | cut -f 2 -d" ")
104104 echo "APPIMAGE_BUILDER_VERSION=${APPIMAGE_BUILDER_VERSION}" >> $GITHUB_ENV
105105 appimage-builder --skip-test
106106 - name : Pack bash
@@ -118,22 +118,27 @@ jobs:
118118 run : |
119119 cd ${{ github.workspace }}/recipes/appimage-builder
120120 appimage-builder --skip-test --recipe ./AppImageBuilder-debug.yml
121+ - name : Compress Assets
122+ run : |
123+ cd ${{ github.workspace }}/recipes/appimage-builder
124+ tar -cvf appimage-builder_x86_64-AppImage.tar ${{ github.workspace }}/recipes/appimage-builder/*x86_64.AppImage*
125+ tar -cvf appimage-builder_x86_64-AppImage-DEBUG.tar ${{ github.workspace }}/recipes/appimage-builder/*-DEBUG.AppImage*
121126 - name : Upload AppImageBuilder AppImage
122127 uses : actions/upload-artifact@v4
123128 with :
124129 name : appimage-builder.AppImage
125- path : ' ${{ github.workspace }}/recipes/appimage-builder/*x86_64. AppImage* '
130+ path : ' ${{ github.workspace }}/recipes/appimage-builder/appimage-builder_x86_64- AppImage.tar '
126131 retention-days : 7
127132 - name : Upload AppImageBuilder Debug AppImage
128133 uses : actions/upload-artifact@v4
129134 with :
130135 name : appimage-builder-DEBUG.AppImage
131- path : ' ${{ github.workspace }}/recipes/appimage-builder/*- DEBUG*.AppImage* '
136+ path : ' ${{ github.workspace }}/recipes/appimage-builder/appimage-builder_x86_64-AppImage- DEBUG.tar '
132137 retention-days : 7
133138 - name : Upload AppImageBuilder Python dist
134139 uses : actions/upload-artifact@v4
135140 with :
136- name : appimage-builder-${{ env.APPIMAGE_BUILDER_VERSION }}- pydist
141+ name : appimage-builder-pydist
137142 path : ' ${{ github.workspace }}/dist/*'
138143 retention-days : 7
139144 - name : Upload Bash AppImage
@@ -142,4 +147,3 @@ jobs:
142147 name : bash.AppImage
143148 path : ' ${{ github.workspace }}/recipes/bash/*.AppImage*'
144149 retention-days : 7
145-
0 commit comments