Merge pull request #168 from aunetx/update-master-8d04ea4 #360
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Build | |
| on: | |
| [pull_request, push] | |
| jobs: | |
| packages: | |
| name: "Build AppImage" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: install_deps | |
| run: make install_deps | |
| - name: build_appimage_x64 | |
| run: make build_appimage_x64 | |
| - name: build_appimage_arm64 | |
| run: make build_appimage_arm64 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: deezer-desktop-nightly-build-x64.AppImage | |
| path: artifacts/x64/deezer-desktop-*.AppImage | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: deezer-desktop-nightly-build-arm64.AppImage | |
| path: artifacts/arm64/deezer-desktop-*.AppImage |