Skip to content
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/automaticRelease.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: automatic-release

on:
push:
branches: [main]

jobs:

build:
uses: ./.github/workflows/buildExecutable.yaml

Automatic-release:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Download artifact
uses: actions/download-artifact@v8
- name: Release
run: |
gh release create v${{ github.run_number }} l10nUtil.exe
env:
GH_TOKEN: ${{ github.token }}
3 changes: 1 addition & 2 deletions .github/workflows/buildExecutable.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Build executable
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
workflow_call:
Comment thread
nvdaes marked this conversation as resolved.
jobs:
build:
runs-on: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"mdx-truly-sane-lists==1.3",
"nh3==0.2.19",
"pymdown-extensions>=10.12",
"requests>=2.32.5",
"requests>=2.33.0",
Comment thread
nvdaes marked this conversation as resolved.
Outdated
]
[project.urls]
Repository = "https://github.com/nvaccess/nvdaL10n"
Expand Down
14 changes: 7 additions & 7 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.