We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
dist
1 parent 8c7760f commit ee29e20Copy full SHA for ee29e20
1 file changed
.github/workflows/build-and-deploy.yml
@@ -38,7 +38,7 @@ jobs:
38
- name: Copy built files to dist branch
39
run: |
40
# Remove old built files
41
- find . -name "*.user.js" -not -path "./node_modules/*" -not -path "./.git/*" -delete
+ find . -name "*.user.js" -not -path "./node_modules/*" -not -path "./.git/*" -not -path "./dist/*" -delete
42
43
# Copy new built files
44
cp -r dist/* .
@@ -56,7 +56,7 @@ jobs:
56
echo "No changes to commit"
57
else
58
git add .
59
- git commit -m "Build userscripts from master branch $(git rev-parse --short HEAD)"
+ git commit --no-verify -m "Build userscripts from master branch $(git rev-parse --short HEAD)"
60
git push origin dist
61
fi
62
0 commit comments