Merge pull request #396 from actions/check-dist

Add missing dist check
This commit is contained in:
Nick Alteen
2024-05-02 14:30:25 -04:00
committed by GitHub

View File

@ -25,10 +25,6 @@ jobs:
name: Check dist/
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- name: Checkout
id: checkout
@ -54,6 +50,11 @@ jobs:
- name: Compare Directories
id: diff
run: |
if [ ! -d dist/ ]; then
echo "Expected dist/ directory does not exist. See status below:"
ls -la ./
exit 1
fi
if [ "$(git diff --ignore-space-at-eol --text dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff --ignore-space-at-eol --text dist/