Skip to content

Commit 039b0fd

Browse files
committed
Suppression du SVG
1 parent faf3bff commit 039b0fd

File tree

2 files changed

+21
-24
lines changed

2 files changed

+21
-24
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,24 @@ jobs:
3030

3131
- name: Verify renderer queue logic
3232
run: node scripts/verify-renderer-queue.js
33+
34+
# Build AppImage (adapter la commande si besoin)
35+
- name: Build AppImage
36+
run: |
37+
npm run build-appimage
38+
39+
# Upload AppImage as artifact
40+
- name: Upload AppImage
41+
uses: actions/upload-artifact@v4
42+
with:
43+
name: AM-GUI-AppImage
44+
path: dist/*.AppImage
45+
46+
# Create GitHub Release (only on main branch and on tag)
47+
- name: Create Release
48+
if: github.ref_type == 'tag' || github.ref == 'refs/heads/main'
49+
uses: softprops/action-gh-release@v2
50+
with:
51+
files: dist/*.AppImage
52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

external-logo-AM.svg

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)