Skip to content

Bump version to 2025.1.10 #81

Bump version to 2025.1.10

Bump version to 2025.1.10 #81

Workflow file for this run

name: Upload on new tags
on:
push:
tags:
'*'
jobs:
buildAndUpload:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.11"
architecture: "x86"
- name: Install dependencies
run: pip install scons markdown
- name: Build add-on
run: scons
- name: Build pot template
run: scons pot
- name: Calculate sha256
run: sha256sum *.nvda-addon >> changelog.md
- name: Release
uses: softprops/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
*.nvda-addon
*.json
*.pot
body_path: changelog.md
prerelease: ${{ contains(github.ref, '-') }}