Skip to content

Commit

Permalink
Fix release workflow :-<
Browse files Browse the repository at this point in the history
  • Loading branch information
tamiroh committed Jan 23, 2024
1 parent 6a20ca0 commit 7634b47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release-drafter-publish.upload_url }}
upload_url: ${{ steps.release-drafter-publish.outputs.upload_url }}
asset_path: ./${{ env.PLUGIN_NAME }}.zip
asset_name: ${{ env.PLUGIN_NAME }}-${{ steps.build.outputs.tag_name }}.zip
asset_content_type: application/zip
Expand All @@ -58,7 +58,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release-drafter-publish.upload_url }}
upload_url: ${{ steps.release-drafter-publish.outputs.upload_url }}
asset_path: ./main.js
asset_name: main.js
asset_content_type: text/javascript
Expand All @@ -68,7 +68,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.release-drafter-publish.upload_url }}
upload_url: ${{ steps.release-drafter-publish.outputs.upload_url }}
asset_path: ./manifest.json
asset_name: manifest.json
asset_content_type: application/json

0 comments on commit 7634b47

Please sign in to comment.