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

Commit

Permalink
fix path in release upload (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfomhover authored May 3, 2022
1 parent 88eb545 commit 95ac697
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/component_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ jobs:
with:
creds: ${{secrets.AZURE_CREDS}}

- name: Get tag and branch name
id: tag
uses: ypicard/get-branch-name-github-action@v1

- name: Build ${{matrix.component_name}}
run: |
# copy sources of the component
Expand Down Expand Up @@ -77,6 +73,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.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: dist/
asset_path: dist/component-${{matrix.component_name}}.zip
asset_name: component-${{matrix.component_name}}.zip
asset_content_type: application/zip

0 comments on commit 95ac697

Please sign in to comment.