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

pull/56/head
Jakub Chrzanowski 4 years ago
parent 2de45ab6ce
commit d702c7e798

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

@ -12,6 +12,7 @@
- Dependencies - upgrade `io.gitlab.arturbosch.detekt` to `1.14.2` - Dependencies - upgrade `io.gitlab.arturbosch.detekt` to `1.14.2`
- Dependencies - upgrade `org.jetbrains.intellij` to `0.6.1` - Dependencies - upgrade `org.jetbrains.intellij` to `0.6.1`
- GitHub Actions - `gradleValidation` update to `gradle/wrapper-validation-action@v1.0.3` - GitHub Actions - `gradleValidation` update to `gradle/wrapper-validation-action@v1.0.3`
- GitHub Actions - `releaseDraft` update to `actions/download-artifact@v2`
### Removed ### Removed
- Remove Third-party IntelliJ Plugin Verifier GitHub Action - Remove Third-party IntelliJ Plugin Verifier GitHub Action

Loading…
Cancel
Save