Skip to content

Commit

Permalink
git action fix
Browse files Browse the repository at this point in the history
  • Loading branch information
suitedaces committed Dec 24, 2023
1 parent 7c11644 commit 96ac7f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ jobs:
run: |
git config --global user.name 'suitedaces'
git config --global user.email '[email protected]'
git add dist/
git add dist/ -f
if git diff --quiet; then
echo "No changes in dist, skipping commit"
else
git commit -m 'Update dist directory'
git push
fi
shell: /usr/bin/bash -e {0}

0 comments on commit 96ac7f9

Please sign in to comment.