We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf3bff commit 039b0fdCopy full SHA for 039b0fd
.github/workflows/ci.yml
@@ -30,3 +30,24 @@ jobs:
30
31
- name: Verify renderer queue logic
32
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
51
+ files: dist/*.AppImage
52
+ env:
53
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
external-logo-AM.svg
0 commit comments