Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Loftus committed Jan 25, 2024
1 parent b809d25 commit da569da
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build_addon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:
run: ls -R

- name: Find .nvda-addon file
run: find . -name "*.nvda-addon"
run: find . -name "*.nvda-addon" -print

- uses: actions/upload-artifact@v3
with:
name: packaged_addon
path: nvda/.addOn/sight-free-talon-server/**/*.nvda-addon
path: ./nvda/.addOn/sight-free-talon-server/*.nvda-addon

upload_release:
runs-on: ubuntu-latest
Expand All @@ -58,12 +58,15 @@ jobs:
- uses: actions/checkout@v3
- name: download releases files
uses: actions/download-artifact@v3
with:
name: packaged_addon
path: ./nvda/.addOn/sight-free-talon-server/
- name: Display structure of downloaded files
run: ls -R

- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./nvda/.addOn/sight-free-talon-server/packaged_addon/*.nvda-addon
files: ./nvda/.addOn/sight-free-talon-server/*.nvda-addon
fail_on_unmatched_files: true
prerelease: ${{ contains(github.ref, '-') }}

0 comments on commit da569da

Please sign in to comment.