Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/tesseract/.github/workflows/installer-for-windows.yml @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 # GitHub actions - Create Tesseract installer for Windows | |
| 2 | |
| 3 name: Cross build for Windows | |
| 4 | |
| 5 on: | |
| 6 # Trigger workflow in GitHub web frontend or from API. | |
| 7 workflow_dispatch: | |
| 8 inputs: | |
| 9 targets: | |
| 10 description: 'Target operating system' | |
| 11 required: true | |
| 12 default: 'Windows (64 bit)' | |
| 13 type: choice | |
| 14 options: | |
| 15 - 'Windows (64 bit)' | |
| 16 | |
| 17 jobs: | |
| 18 build64: | |
| 19 runs-on: [ubuntu-24.04] | |
| 20 steps: | |
| 21 - uses: actions/checkout@v4 | |
| 22 - name: Build Tesseract installer (64 bit) | |
| 23 run: nsis/build.sh x86_64 | |
| 24 - uses: actions/upload-artifact@v4 | |
| 25 with: | |
| 26 name: Tesseract Installer for Windows (64 bit) | |
| 27 path: dist |
