Skip to content

Commit

Permalink
Include a template for translators on each add-on release as part of …
Browse files Browse the repository at this point in the history
…the assets
  • Loading branch information
jmdaweb committed Oct 6, 2024
1 parent 4cef57d commit e9985ab
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build_addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ jobs:
run: export SKIP=no-commit-to-branch; pre-commit run --all

- name: building addon
run: scons
run: scons && scons pot

- uses: actions/upload-artifact@v3
with:
name: packaged_addon
path: ./*.nvda-addon
path: |
./*.nvda-addon
./*.pot
upload_release:
runs-on: ubuntu-latest
Expand All @@ -59,6 +61,8 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
files: packaged_addon/*.nvda-addon
files: |
packaged_addon/*.nvda-addon
packaged_addon/*.pot
fail_on_unmatched_files: true
prerelease: ${{ contains(github.ref, '-') }}

0 comments on commit e9985ab

Please sign in to comment.