-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (85 loc) · 2.89 KB
/
Copy pathbeta-release.yml
File metadata and controls
100 lines (85 loc) · 2.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: Build and Release NullifyPDF (Beta)
on:
push:
tags:
- 'v*-beta.*'
workflow_dispatch:
permissions:
contents: write
actions: read
concurrency:
group: beta-release-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-22.04, macos-latest]
variant: [lite, full]
steps:
- name: Checkout Code
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: '3.13'
cache: 'pip'
- name: Install System Dependencies (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y rpm dpkg binutils libxcb-cursor0 libxkbcommon-x11-0 libegl1 desktop-file-utils
- name: Install Python Dependencies (includes spaCy models)
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Smoke Tests
run: pytest tests/ -v
- name: Type Check (mypy)
shell: bash
run: mypy NullifyPDF.py --ignore-missing-imports --no-error-summary 2>&1 | head -50 || true
- name: Resolve beta suffix from tag
if: startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
TAG="${GITHUB_REF#refs/tags/}"
echo "NULLIFYPDF_BETA_SUFFIX=${TAG#*-}" >> "$GITHUB_ENV"
- name: Build
env:
NULLIFYPDF_BUILD_VARIANT: ${{ matrix.variant }}
run: python build_local.py
- name: Upload Artifact
uses: actions/upload-artifact@v7
with:
name: beta-build-${{ runner.os }}-${{ matrix.variant }}
retention-days: 5
path: |
dist/NullifyPDF_v*_Windows_*.exe
dist/NullifyPDF_v*_macOS_*.zip
dist/NullifyPDF_v*_Ubuntu_*.deb
dist/NullifyPDF_v*_Fedora_*.rpm
create_beta_release:
name: Create GitHub Beta Release
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v8
with:
path: all-builds
pattern: beta-build-*
merge-multiple: true
- name: Release
uses: softprops/action-gh-release@v3
with:
prerelease: true
files: |
all-builds/NullifyPDF_v*_Windows_*.exe
all-builds/NullifyPDF_v*_macOS_*.zip
all-builds/NullifyPDF_v*_Ubuntu_*.deb
all-builds/NullifyPDF_v*_Fedora_*.rpm
body: "NullifyPDF beta release (build from develop). Includes Lite and Full OCR variants. Do not use in production. If validation succeeds, this build will be promoted to stable without rebuilding."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}