custom flatpak build to inject flatpak-spawn commands #50
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: Build | |
on: | |
push: | |
# branches: ["master"] | |
# workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.11.0 | |
cache: "npm" | |
# Update package lists | |
- name: update apt-get | |
run: sudo apt-get update | |
# Install and setup Flatpak for Ubuntu | |
- name: Install flatpak packages (Ubuntu only) | |
run: sudo apt-get install -y flatpak flatpak-builder | |
- run: npm ci | |
# - run: npm run package | |
- name: Setup flatpak repo (Ubuntu only) | |
run: | | |
flatpak remote-add --if-not-exists --user \ | |
flathub https://flathub.org/repo/flathub.flatpakrepo | |
# Build Flatpak package | |
- name: Build Flatpak (Ubuntu only) | |
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-${{ matrix.os }} | |
path: release |