test NixOS build #35
This file contains 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
# This workflow will... | |
name: Release Linux | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
on: | |
push: | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Install flatpak packages | |
run: sudo apt-get install -y flatpak flatpak-builder | |
- name: Setup flatpak repo | |
run: | | |
flatpak remote-add --if-not-exists --user \ | |
flathub https://flathub.org/repo/flathub.flatpakrepo | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.11.0 | |
cache: "npm" | |
- run: npm ci | |
- run: npm run build | |
- name: Build deb | |
run: npx electron-builder --config electron-builder.config.js --publish never --linux deb --x64 | |
- name: Build flatpak | |
run: env DEBUG="@malept/flatpak-bundler" npx electron-builder --config electron-builder.config.js --publish never --linux flatpak | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release | |
path: release |