mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-25 12:29:30 +00:00
feat: update Linux artifact names and improve AppImage config categories
This commit is contained in:
parent
d1cb638d5f
commit
e83a447fd8
3 changed files with 12 additions and 11 deletions
14
.github/workflows/flutter-ci.yaml
vendored
14
.github/workflows/flutter-ci.yaml
vendored
|
|
@ -111,7 +111,7 @@ jobs:
|
|||
- name: Install Linux dependencies
|
||||
run: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev locate
|
||||
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev locate libfuse2
|
||||
# Download and install appimagetool
|
||||
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage
|
||||
chmod +x appimagetool-x86_64.AppImage
|
||||
|
|
@ -128,8 +128,8 @@ jobs:
|
|||
# Find and rename .deb file
|
||||
DEB_FILE=$(find dist/ -name "*.deb" -type f)
|
||||
if [ -n "$DEB_FILE" ]; then
|
||||
mv "$DEB_FILE" dist/fast-forge-linux-amd64.deb
|
||||
echo "Renamed DEB: $DEB_FILE to dist/fast-forge-linux-amd64.deb"
|
||||
mv "$DEB_FILE" dist/vaani-linux-amd64.deb
|
||||
echo "Renamed DEB: $DEB_FILE to dist/vaani-linux-amd64.deb"
|
||||
else
|
||||
echo "Error: .deb file not found in dist/"
|
||||
exit 1
|
||||
|
|
@ -138,8 +138,8 @@ jobs:
|
|||
# Find and rename .AppImage file
|
||||
APPIMAGE_FILE=$(find dist/ -name "*.AppImage" -type f)
|
||||
if [ -n "$APPIMAGE_FILE" ]; then
|
||||
mv "$APPIMAGE_FILE" dist/fast-forge-linux-amd64.AppImage
|
||||
echo "Renamed AppImage: $APPIMAGE_FILE to dist/fast-forge-linux-amd64.AppImage"
|
||||
mv "$APPIMAGE_FILE" dist/vaani-linux-amd64.AppImage
|
||||
echo "Renamed AppImage: $APPIMAGE_FILE to dist/vaani-linux-amd64.AppImage"
|
||||
else
|
||||
echo "Error: .AppImage file not found in dist/"
|
||||
exit 1
|
||||
|
|
@ -151,8 +151,8 @@ jobs:
|
|||
with:
|
||||
name: linux-release-artifacts
|
||||
path: |
|
||||
dist/fast-forge-linux-amd64.deb
|
||||
dist/fast-forge-linux-amd64.AppImage
|
||||
dist/vaani-linux-amd64.deb
|
||||
dist/vaani-linux-amd64.AppImage
|
||||
|
||||
# Job 4: Create GitHub Release (NEW - runs only on tag pushes)
|
||||
create_release:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue