mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Use the correct property in the "Upload artifact" step
The `needs.build` accessor is only available in downstream jobs that depend on the `build` job. For steps that are part of the same job, the `needs.build.outputs.artifact` property is empty.
This commit is contained in:
parent
e77b150871
commit
5ac0de4a4b
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@ -135,7 +135,7 @@ jobs:
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: plugin-artifact
|
||||
path: ./build/distributions/${{ needs.build.outputs.artifact }}
|
||||
path: ./build/distributions/${{ steps.properties.outputs.artifact }}
|
||||
|
||||
# Verify built plugin using IntelliJ Plugin Verifier tool
|
||||
# Requires build job to be passed
|
||||
|
Loading…
Reference in New Issue
Block a user