Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Fix asset name
Browse files Browse the repository at this point in the history
  • Loading branch information
argenos committed Aug 24, 2020
1 parent cb6def2 commit c77a3c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ github.ref }}
with:
tag_name: ${{ github.ref }}
release_name: v${{ github.ref }}
Expand All @@ -33,6 +34,6 @@ jobs:
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`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./mdnotes-${{ github.ref }}.xpi
asset_name: mdnotes-${{ github.ref }}.xpi
asset_path: ./mdnotes-${{ steps.create_release.outputs.tag_name }}.xpi
asset_name: mdnotes-${{ steps.create_release.outputs.tag_name }}.xpi
asset_content_type: application/zip

0 comments on commit c77a3c4

Please sign in to comment.