Move CandidatesView above cursor only when there's larger space #584
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: Nix | |
on: | |
pull_request: | |
push: | |
branches: [master] | |
jobs: | |
develop: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Fetch source code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: cachix/install-nix-action@v31 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v16 | |
with: | |
name: fcitx5-android | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build Release APK | |
run: | | |
nix develop .#noAS --command ./gradlew :app:assembleRelease | |
nix develop .#noAS --command ./gradlew :assembleReleasePlugins |