Skip to content

Commit 794b951

Browse files
committed
Remove version from filename
So the prelease doesn't being hoarding files. Signed-off-by: Gregorio Litenstein <g.litenstein@gmail.com>
1 parent 149e671 commit 794b951

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/build-test.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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,28 +118,33 @@ 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*
126+
tar -cvf ${{ github.workspace }}/appimage-builder_python-dist.tar ${{ github.workspace }}/dist/*
121127
- name: Upload AppImageBuilder AppImage
122128
uses: actions/upload-artifact@v4
123129
with:
124130
name: appimage-builder.AppImage
125-
path: '${{ github.workspace }}/recipes/appimage-builder/*x86_64.AppImage*'
131+
path: '${{ github.workspace }}/recipes/appimage-builder/appimage-builder_x86_64-AppImage.tar'
126132
retention-days: 7
127133
- name: Upload AppImageBuilder Debug AppImage
128134
uses: actions/upload-artifact@v4
129135
with:
130136
name: appimage-builder-DEBUG.AppImage
131-
path: '${{ github.workspace }}/recipes/appimage-builder/*-DEBUG*.AppImage*'
137+
path: '${{ github.workspace }}/recipes/appimage-builder/appimage-builder_x86_64-AppImage-DEBUG.tar'
132138
retention-days: 7
133139
- name: Upload AppImageBuilder Python dist
134140
uses: actions/upload-artifact@v4
135141
with:
136-
name: appimage-builder-${{ env.APPIMAGE_BUILDER_VERSION }}-pydist
137-
path: '${{ github.workspace }}/dist/*'
142+
name: appimage-builder-pydist
143+
path: '${{ github.workspace }}/appimage-builder_python-dist.tar'
138144
retention-days: 7
139145
- name: Upload Bash AppImage
140146
uses: actions/upload-artifact@v4
141147
with:
142148
name: bash.AppImage
143149
path: '${{ github.workspace }}/recipes/bash/*.AppImage*'
144150
retention-days: 7
145-

0 commit comments

Comments
 (0)