We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3715355 commit d56ef71Copy full SHA for d56ef71
.github/workflows/check-dist.yml
@@ -45,7 +45,8 @@ jobs:
45
id: build
46
run: npm run bundle
47
48
- # This will fail the workflow if the PR wasn't created by Dependabot.
+ # This will fail the workflow if the `dist/` directory is different than
49
+ # expected.
50
- name: Compare Directories
51
id: diff
52
run: |
@@ -55,8 +56,8 @@ jobs:
55
56
exit 1
57
fi
58
- # If `dist/` was different than expected, and this was not a Dependabot
59
- # PR, upload the expected version as a workflow artifact.
+ # If `dist/` was different than expected, upload the expected version as a
60
+ # workflow artifact.
61
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
62
name: Upload Artifact
63
id: upload
0 commit comments