Skip to content

Commit

Permalink
Specify exact path for artifact in release with GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nvdaes committed Mar 4, 2020
1 parent 439fd00 commit 58e54b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
body: |
This is the release ${{ github.ref }} created with GitHub actions"
draft: false
prerelease: endsWith(${{ github.ref }}, "-dev")
prerelease: endsWith(${{ github.ref }}, '-dev')
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`.
asset_path: "./*.nvda-addon"
asset_path: ./clipContentsDesigner-11.0.nvda-addon
asset_name: nvda-addon
asset_content_type: application/nvda-addon

0 comments on commit 58e54b8

Please sign in to comment.