GitHub Actions - releaseDraft update to actions/download-artifact@v2

This commit is contained in:
Jakub Chrzanowski
2020-10-29 20:49:30 +01:00
parent 2de45ab6ce
commit d702c7e798
2 changed files with 3 additions and 2 deletions

View File

@@ -211,7 +211,7 @@ jobs:
# Download plugin artifact provided by the previous job
- name: Download Artifact
uses: actions/download-artifact@v1
uses: actions/download-artifact@v2
with:
name: plugin-artifact
@@ -223,6 +223,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.createDraft.outputs.upload_url }}
asset_path: ./plugin-artifact/${{ needs.build.outputs.artifact }}
asset_path: ./${{ needs.build.outputs.artifact }}
asset_name: ${{ needs.build.outputs.artifact }}
asset_content_type: application/zip