comparison mupdf-source/thirdparty/tesseract/.github/workflows/installer-for-windows.yml @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
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