Fix mouse press being ignored on x11 #296
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
name: flatpak | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
flatpak: | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:freedesktop-22.08 | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Fixup the manifests (PR only) | |
if: github.event_name == 'pull_request' | |
run: | | |
sed -i 's|branch: master|branch: ${{ github.ref }}|' pw.cloudef.bemenu.yml | |
sed -i 's|branch: master|branch: ${{ github.ref }}|' pw.cloudef.bemenu-run.yml | |
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 | |
with: | |
bundle: pw.cloudef.bemenu.flatpak | |
manifest-path: pw.cloudef.bemenu.yml | |
cache-key: flatpak-builder-bemenu-${{ github.sha }} | |
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4 | |
with: | |
bundle: pw.cloudef.bemenu-run.flatpak | |
manifest-path: pw.cloudef.bemenu-run.yml | |
cache-key: flatpak-builder-bemenu-run-${{ github.sha }} |