input: find surface pos correctly when mouse drag is active #2
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: Build man pages | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- docs/** | |
branches: | |
- 'main' | |
jobs: | |
main: | |
name: Build man pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install deps | |
run: sudo apt install pandoc | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT }} | |
- name: Build man pages | |
run: make man | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
name: Commit | |
with: | |
commit_message: "[gha] build man pages" |