Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/screener-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ jobs:
uses: dawidd6/action-download-artifact@v2
with:
workflow: screener-build.yml
workflow_conclusion: success
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Q: why workflow_conclusion is removed?
A: Do not specify pr, commit, branch, run_id together or workflow_conclusion and run_id together. Pick just one of each or none. https://github.com/dawidd6/action-download-artifact#usage

run_id: ${{github.event.workflow_run.id}}
name: env-artifact

- name: Download N* storybook artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: screener-build.yml
workflow_conclusion: success
run_id: ${{github.event.workflow_run.id}}
name: northstar-artifact
# downloads artifact to where it would be 'built'
path: packages/fluentui/docs/dist
Expand Down Expand Up @@ -118,14 +118,14 @@ jobs:
uses: dawidd6/action-download-artifact@v2
with:
workflow: screener-build.yml
workflow_conclusion: success
run_id: ${{github.event.workflow_run.id}}
name: env-artifact

- name: Download screener storybook artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: screener-build.yml
workflow_conclusion: success
run_id: ${{github.event.workflow_run.id}}
name: screener-artifact
path: apps/vr-tests/dist/storybook
if: ${{ env.IS_ARTIFACT_PRESENT == 'true' }}
Expand Down Expand Up @@ -192,14 +192,14 @@ jobs:
uses: dawidd6/action-download-artifact@v2
with:
workflow: screener-build.yml
workflow_conclusion: success
run_id: ${{github.event.workflow_run.id}}
name: env-artifact

- name: Download VNext storybook artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: screener-build.yml
workflow_conclusion: success
run_id: ${{github.event.workflow_run.id}}
name: vnext-artifact
path: apps/vr-tests-react-components/dist/storybook
if: ${{ env.IS_ARTIFACT_PRESENT == 'true' }}
Expand Down