We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49480ec commit 6a3f6c0Copy full SHA for 6a3f6c0
1 file changed
.github/workflows/deploy.yml
@@ -33,7 +33,7 @@ jobs:
33
run: |
34
find . -name "build.js" -type f -exec echo "Running: {}" \; -exec bun run {} \;
35
36
- - name: Cleanup
+ - name: Cleanup Builds
37
38
find . -name "build.js" -type f -delete
39
find . -name "*.template.html" -type f -delete
@@ -44,6 +44,12 @@ jobs:
44
- name: Minify
45
run: bun run ./.github/minify.js
46
47
+ - name: Cleanup Bun
48
+ run: |
49
+ rm -rf node_modules
50
+ rm package.json
51
+ rm bun.lock
52
+
53
- name: Create Artifact
54
uses: actions/upload-pages-artifact@v3
55
with:
0 commit comments