Skip to content

Commit 64963a7

Browse files
committed
fix appimage action
1 parent eac802c commit 64963a7

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

.github/workflows/release.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -324,23 +324,23 @@ jobs:
324324
with:
325325
recipe: ./AppImageBuilder.yml
326326

327-
- name: Find AppImage file
328-
id: find_appimage
329-
run: |
330-
APPIMAGE_PATH=$(find . -name "*.AppImage" -print -quit)
331-
echo "appimage_path=$APPIMAGE_PATH" >> $GITHUB_OUTPUT
332-
echo "appimage_name=$(basename "$APPIMAGE_PATH")" >> $GITHUB_OUTPUT
333-
334-
335-
- name: Upload AppImage to release
336-
uses: actions/upload-release-asset@v1
337-
env:
338-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
339-
with:
340-
upload_url: ${{ needs.create_release.outputs.upload_url }} # Preuzima upload_url iz create_release joba
341-
asset_path: ${{ steps.find_appimage.outputs.appimage_path }}
342-
asset_name: ${{ steps.find_appimage.outputs.appimage_name }}
343-
asset_content_type: application/octet-stream # MIME tip za AppImage
327+
# - name: Find AppImage file
328+
# id: find_appimage
329+
# run: |
330+
# APPIMAGE_PATH=$(find . -name "*.AppImage" -print -quit)
331+
# echo "appimage_path=$APPIMAGE_PATH" >> $GITHUB_OUTPUT
332+
# echo "appimage_name=$(basename "$APPIMAGE_PATH")" >> $GITHUB_OUTPUT
333+
#
334+
#
335+
# - name: Upload AppImage to release
336+
# uses: actions/upload-release-asset@v1
337+
# env:
338+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
339+
# with:
340+
# upload_url: ${{ needs.create_release.outputs.upload_url }} # Preuzima upload_url iz create_release joba
341+
# asset_path: ${{ steps.find_appimage.outputs.appimage_path }}
342+
# asset_name: ${{ steps.find_appimage.outputs.appimage_name }}
343+
# asset_content_type: application/octet-stream # MIME tip za AppImage
344344

345345
# build-apk:
346346
# name: Build APK

0 commit comments

Comments
 (0)