We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec93d33 commit a8893d2Copy full SHA for a8893d2
.github/workflows/on-release.yml
@@ -64,6 +64,15 @@ jobs:
64
apple-issuer-id: ${{ secrets.APPLE_ISSUER_ID }}
65
apple-key-id: ${{ secrets.APPLE_KEY_ID }}
66
67
+ - name: Install Flatpak tool-chain (Linux only)
68
+ if: runner.os == 'Linux'
69
+ run: |
70
+ sudo apt-get update
71
+ # flatpak itself isn’t strictly required to *build*, but it’s good to have.
72
+ sudo apt-get install -y --no-install-recommends \
73
+ flatpak flatpak-builder elfutils
74
+ flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo
75
+
76
- name: Build and Publish to GitHub Release
77
run: pnpm run publish
78
env:
0 commit comments